Originally posted by Dark Nemesis
it also became apparent when tested
but what do you guys sugest for editing programs,I checked the sites you sugest, but they haven't labeled the files very well

Why won't my comiler accept this (manual says it accepts do whiles..)

Code:
do while ((mondmg > monatkh) || (mondmg < monatkl)) 
mondmg = rand();
Gives an error that the do statement must have a while...
1) lol
2)
3) because you're doing it incorrectly
Code:
do
{
     mondmg = rand();
} while ((mondmg > monatkh) || (mondmg < monatkl));
I think you could benefit from checking out these and more specifically, this