tathanngudong Posted February 1, 2018 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 64 Reputation: 3 Joined: 04/17/15 Last Seen: March 15, 2018 Share Posted February 1, 2018 (edited) i edit Max Level of skill Throw Kunai but i don't know how increase skill point basic of that skill ... Please...help http:// Edited February 1, 2018 by tathanngudong Quote Link to comment Share on other sites More sharing options...
0 pajodex Posted February 1, 2018 Group: Members Topic Count: 79 Topics Per Day: 0.03 Content Count: 439 Reputation: 173 Joined: 12/12/17 Last Seen: Sunday at 08:46 PM Share Posted February 1, 2018 Do you mean you want to add more skill points? Quote Link to comment Share on other sites More sharing options...
0 tathanngudong Posted February 1, 2018 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 64 Reputation: 3 Joined: 04/17/15 Last Seen: March 15, 2018 Author Share Posted February 1, 2018 26 minutes ago, pajodex said: Do you mean you want to add more skill points? Yes.. that's it!! please show me how "add skill points" ? Quote Link to comment Share on other sites More sharing options...
0 gleynn Posted February 1, 2018 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 63 Reputation: 2 Joined: 08/10/12 Last Seen: December 31, 2022 Share Posted February 1, 2018 Either increase the job level for a certain class or create an npc that sells skill points. Quote Link to comment Share on other sites More sharing options...
0 gleynn Posted February 1, 2018 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 63 Reputation: 2 Joined: 08/10/12 Last Seen: December 31, 2022 Share Posted February 1, 2018 Either increase the job level for a certain class or create an npc that sells skill points. Quote Link to comment Share on other sites More sharing options...
0 pajodex Posted February 1, 2018 Group: Members Topic Count: 79 Topics Per Day: 0.03 Content Count: 439 Reputation: 173 Joined: 12/12/17 Last Seen: Sunday at 08:46 PM Share Posted February 1, 2018 (edited) 23 minutes ago, tathanngudong said: Yes.. that's it!! please show me how "add skill points" ? If you can wait, I will do it tomorrow. I'm about to sleep now. Or wait for someone to code. Here is the idea " skillpoints = skillpoints + n".. You have to modify the reset npc also. "If(job=ninja) set skillpoints, skillpoints + n" I'm on phone. Too lazy to format Edited February 1, 2018 by pajodex Quote Link to comment Share on other sites More sharing options...
0 tathanngudong Posted February 1, 2018 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 64 Reputation: 3 Joined: 04/17/15 Last Seen: March 15, 2018 Author Share Posted February 1, 2018 Just now, pajodex said: If you can wait, I will do it tomorrow. I'm about to sleep now. Or wait for someone to code. thank you Quote Link to comment Share on other sites More sharing options...
0 pajodex Posted February 2, 2018 Group: Members Topic Count: 79 Topics Per Day: 0.03 Content Count: 439 Reputation: 173 Joined: 12/12/17 Last Seen: Sunday at 08:46 PM Share Posted February 2, 2018 (edited) Hi, Here you go, feel free to edit this at your needs. //============= by pajodex ======================// prontera,150,180,4 script Skill Points giver 100,{ If(SkillPoint_r == 1) { mes "You have received your extra skill points"; close2; end; } mes "Hi, I can give you extra skill points"; If(select("Yes:No") == 1 ) { next; mes "Here you go!"; set SkillPoint,SkillPoint+100; // gives 100 extra skill points SkillPoint_r = 1; close; } else { mes "Come back at any time"; close; } } @tathanngudong Edited February 2, 2018 by pajodex 1 1 Quote Link to comment Share on other sites More sharing options...
0 tathanngudong Posted February 2, 2018 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 64 Reputation: 3 Joined: 04/17/15 Last Seen: March 15, 2018 Author Share Posted February 2, 2018 1 hour ago, pajodex said: Hi, Here you go, feel free to edit this at your needs. //============= by pajodex ======================// prontera,150,180,4 script Skill Points giver 100,{ If(SkillPoint_r == 1) { mes "You have received your extra skill points"; close2; end; } mes "Hi, I can give you extra skill points"; If(select("Yes:No") == 1 ) { next; mes "Here you go!"; set SkillPoint,SkillPoint+100; // gives 100 extra skill points SkillPoint_r = 1; close; } else { mes "Come back at any time"; close; } } @tathanngudong thanks you about npc... but that not i means... i mean... Max level of that skill is 10... Although my skill points are redundant...i can't increase max skill point for that skill... i don't know how to do that! please...show me what i should to do... Quote Link to comment Share on other sites More sharing options...
0 pajodex Posted February 2, 2018 Group: Members Topic Count: 79 Topics Per Day: 0.03 Content Count: 439 Reputation: 173 Joined: 12/12/17 Last Seen: Sunday at 08:46 PM Share Posted February 2, 2018 (edited) 5 minutes ago, tathanngudong said: thanks you about npc... but that not i means... i mean... Max level of that skill is 10... Although my skill points are redundant...i can't increase max skill point for that skill... i don't know how to do that! please...show me what i should to do... I see, I think you have to edit the client side for this to work. You should be able to know how to use GRF Editor... Then do the ff Find these: data/luafiles514/luafiles/skillonfoz/skillinfolist.lub data/luafiles514/luafiles/skillonfoz/skilldescript.lub and look for this: [SKID.NJ_KUNAI] = { Then edit the max level. Note: Don't forget to compile your grf Edited February 2, 2018 by pajodex 1 1 Quote Link to comment Share on other sites More sharing options...
0 tathanngudong Posted February 2, 2018 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 64 Reputation: 3 Joined: 04/17/15 Last Seen: March 15, 2018 Author Share Posted February 2, 2018 Just now, pajodex said: I see, I think you have to edit the client side for this to work. Find these: data/luafiles514/luafiles/skillonfoz/skillinfolist.lub data/luafiles514/luafiles/skillonfoz/skilldescript.lub and look for this: [SKID.NJ_KUNAI] = { Then edit the max level Oh my... that's it!! Thanks you so much http:// Quote Link to comment Share on other sites More sharing options...
0 pajodex Posted February 2, 2018 Group: Members Topic Count: 79 Topics Per Day: 0.03 Content Count: 439 Reputation: 173 Joined: 12/12/17 Last Seen: Sunday at 08:46 PM Share Posted February 2, 2018 (edited) 3 minutes ago, tathanngudong said: Oh my... that's it!! Thanks you so much If this worked, tick this thread to solved. Also, upvote if you want This will help other players who needs the same solution! Thanks and you're welcome~ PS: This should have been in client support xD Edited February 2, 2018 by pajodex Quote Link to comment Share on other sites More sharing options...
Question
tathanngudong
i edit Max Level of skill Throw Kunai but i don't know how increase skill point basic of that skill ...
Please...help
http://
Edited by tathanngudongLink to comment
Share on other sites
11 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.