hello all back in the 90's using bcc 3.1 i wrote a mud for a bbs software and here recently i have been porting it to a standalone using Nick's barebones mud server.
i hit a compile error with this math function.
to fix the compile error i adjusted it like so:
will this suffice or could i lose any of the value in the conversion?
i hit a compile error with this math function.
long ep2 = atoi(ltoa(((p->exp/(DEFEPL+axp))+1)));
to fix the compile error i adjusted it like so:
long ep2 = ((p->exp/(DEFEPL+axp))+1);
will this suffice or could i lose any of the value in the conversion?