timo0o Posted September 13, 2013 Posted September 13, 2013 (edited) Hello everyone, i would like to change the perfect flee status on my Testserver. I've editied the status.c and changed status->flee2 += status->luk + 10; //(every 10 luk = +1 perfect flee) to status->flee2 += status->luk + 50; //(every 10 luk = +1 perfect flee) After recompiling with Visual C++ Express 2010 I stil get 1 Perfect Flee every 10 Luk instead of 1 Perfect Flee every 50 Luk??? The recompiling finished without any Errors!! Whats wrong here? Or did i forget something??? rAthena Verion is R17324 Thank you :-) Timo0o Fixed it: Edited this instead the 50 in status.c //return cap_value(flee2,10,SHRT_MAX); return cap_value(flee2,10,650); //Perfect Flee Maximum is 65 //return (short)cap_value(flee2,10,SHRT_MAX); return (short)cap_value(flee2,10,650); //Perfect Flee Maximum is 65 Edited September 12, 2013 by timo0o Quote
Question
timo0o
Hello everyone,
i would like to change the perfect flee status on my Testserver.
I've editied the status.c and changed
After recompiling with Visual C++ Express 2010 I stil get 1 Perfect Flee every 10 Luk instead of 1 Perfect Flee every 50 Luk???
The recompiling finished without any Errors!!
Whats wrong here? Or did i forget something???
rAthena Verion is R17324
Thank you :-)
Timo0o
Fixed it:
Edited this instead the 50 in status.c
Edited by timo0o0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.