ARAB Posted January 24, 2016 Posted January 24, 2016 Good evening people! I have on the server 1 agi gives 1 Flee but i need 10 agi for 1 flee Please help Quote
0 Dhall Posted January 25, 2016 Posted January 25, 2016 status.c stat += level + status->agi + (bl->type == BL_MER ? 0 : bl->type == BL_PC ? status->luk / 5 : 0) + 100; //base level + ( every 1 agi = +1 flee ) + (every 5 luk = +1 flee) + 100 Quote
0 Ajjwidjdneidjenw Posted February 1, 2016 Posted February 1, 2016 status.c stat += level + status->agi + (bl->type == BL_MER ? 0 : bl->type == BL_PC ? status->luk / 5 : 0) + 100; //base level + ( every 1 agi = +1 flee ) + (every 5 luk = +1 flee) + 100 Thanks for the reference, I'll fix it. Change: stat += level + status->agi + (bl->type == BL_MER ? 0 : bl->type == BL_PC ? status->luk / 5 : 0) + 100; //base level + ( every 1 agi = +1 flee ) + (every 5 luk = +1 flee) + 100 To: stat += level + (floor(status->agi/10)) + (bl->type == BL_MER ? 0 : bl->type == BL_PC ? status->luk / 5 : 0) + 100; //base level + ( every 10 agi = +1 flee ) + (every 5 luk = +1 flee) + 100 1 Quote
Question
ARAB
Good evening people!
I have on the server 1 agi gives 1 Flee but i need 10 agi for 1 flee
Please help
3 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.