lionellex Posted October 2, 2016 Posted October 2, 2016 Hey guys, I would like to alter this script a little? Instead of giving players Enlarge Weight Limit LEVEL 10, how do I change it to LEVEL 5 instead? https://github.com/flaviojs/rathena-commits/blob/master/npc/other/gympass.txt Quote
0 Fratini Posted October 2, 2016 Posted October 2, 2016 (edited) Hi buddy! If you see this line: if (gympassmemory < 10) { set .@add_carry,gympassmemory + 1; set .@remain_carry,10 - .@add_carry; And this one: skill "ALL_INCCARRY",.@add_carry,0; You can see that the limit of the level of the Passive Skill ALL INCCARRY it's in the line 35, so you just change that number 10 in the line like this: if (gympassmemory < 5) { set .@add_carry,gympassmemory + 1; set .@remain_carry,5 - .@add_carry; if (countitem(7776) > 0) { The variable .@remain_carry it's warning the player how much he can still use the service. Good luck Edited October 2, 2016 by Fratini Quote
0 lionellex Posted October 2, 2016 Author Posted October 2, 2016 (edited) Hi buddy! If you see this line: if (gympassmemory < 10) { set .@add_carry,gympassmemory + 1; set .@remain_carry,10 - .@add_carry; And this one: skill "ALL_INCCARRY",.@add_carry,0; You can see that the limit of the level of the Passive Skill ALL INCCARRY it's in the line 35, so you just change that number 10 in the line like this: if (gympassmemory < 5) { set .@add_carry,gympassmemory + 1; set .@remain_carry,5 - .@add_carry; if (countitem(7776) > 0) { The variable .@remain_carry it's warning the player how much he can still use the service. Good luck Thank you for replying, but i just wanna make sure, on line 63 "skill "ALL_INCCARRY",.@add_carry,SKILL_PERM_GRANT;" I have to change it to "skill "ALL_INCCARRY",.@add_carry,0;" ? Edited October 2, 2016 by lionellex Quote
0 Fratini Posted October 2, 2016 Posted October 2, 2016 You don't need to, since the 0 shows to the server that the skill given it's permanent (Check the line 5389 in doc/script_command.txt) 1 Quote
0 lionellex Posted October 2, 2016 Author Posted October 2, 2016 You don't need to, since the 0 shows to the server that the skill given it's permanent (Check the line 5389 in doc/script_command.txt) Thank you for replying! Everything is done now. Thanks again. Quote
Question
lionellex
Hey guys, I would like to alter this script a little? Instead of giving players Enlarge Weight Limit LEVEL 10, how do I change it to LEVEL 5 instead?
https://github.com/flaviojs/rathena-commits/blob/master/npc/other/gympass.txt
4 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.