AinsLord Posted October 23, 2021 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 10 hours ago Share Posted October 23, 2021 (edited) is there any NPC just like this? the character will do a reset and the base level will be back to lvl 1 and do leveling again to gain more stat points every 10 reset there will be a reward thanks in advance Edited October 23, 2021 by AinsLord Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted October 23, 2021 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2372 Joined: 10/28/11 Last Seen: Thursday at 05:23 PM Share Posted October 23, 2021 (edited) prontera,155,181,5 script Sample 757,{ if (BaseLevel < 99) { mes "You need to be at least level 99."; } else if (select("Reset", "cancel") == 1) { resetlvl 1; RESET_COUNT++; StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset. if (RESET_COUNT && RESET_COUNT % 10 == 0) { getitem 512, 10; // every 10 reset get apple. } } close; } Edited October 24, 2021 by Emistry 1 Quote Link to comment Share on other sites More sharing options...
0 AinsLord Posted October 24, 2021 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 10 hours ago Author Share Posted October 24, 2021 8 hours ago, Emistry said: prontera,155,181,5 script Sample 757,{ if (BaseLevel < 99) { mes "You need to be at least level 99."; } else if (select("Reset", "cancel") == 1) { resetlvl 1; RESET_COUNT++ StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset. if (RESET_COUNT && RESET_COUNT % 10 == 0) { getitem 512, 10; // every 10 reset get apple. } } close; } thanks a lot ill try this one Quote Link to comment Share on other sites More sharing options...
0 AinsLord Posted October 24, 2021 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 10 hours ago Author Share Posted October 24, 2021 10 hours ago, Emistry said: prontera,155,181,5 script Sample 757,{ if (BaseLevel < 99) { mes "You need to be at least level 99."; } else if (select("Reset", "cancel") == 1) { resetlvl 1; RESET_COUNT++ StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset. if (RESET_COUNT && RESET_COUNT % 10 == 0) { getitem 512, 10; // every 10 reset get apple. } } close; } @Emistry i tried the script what happen is first after reset no free 10 status point per reset. second added stats are gone example like 500 str after reset it will become 1 str can the status added stays after reset? third i tried my reset stat NPC after resetting all the accumulated statpoints are gone the only left is the 7237 statpoints that can be acquired lvl 1-255 i've checked my use_statpoint_table: no its in "no" already still the extra statpoints is gone can you help me thanks in advance Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted October 24, 2021 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2372 Joined: 10/28/11 Last Seen: Thursday at 05:23 PM Share Posted October 24, 2021 StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset. add this to your reset npc script. Quote Link to comment Share on other sites More sharing options...
0 AinsLord Posted October 24, 2021 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 10 hours ago Author Share Posted October 24, 2021 44 minutes ago, Emistry said: StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset. add this to your reset npc script. sir @Emistry this one is already in the script but it doesnt add 10 stats points prontera,143,173,5 script Level Reset 757,{ if (BaseLevel < 255) { mes "You need to be at least level 99."; } else if (select("Reset", "cancel") == 1) { resetlvl 1; RESET_COUNT++ StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset. if (RESET_COUNT && RESET_COUNT % 10 == 0) { getitem 512, 10; // every 10 reset get apple. } } close2; } i made it close2 coz it got warning on console TY again in advance Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted October 24, 2021 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2372 Joined: 10/28/11 Last Seen: Thursday at 05:23 PM Share Posted October 24, 2021 RESET_COUNT++; // <-------- add the semicolon 1 Quote Link to comment Share on other sites More sharing options...
0 AinsLord Posted October 24, 2021 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 10 hours ago Author Share Posted October 24, 2021 thanks again @Emistry btw why i cant move after reset @go 0 is not even working it takes like 10-15sec b4 i can move and why if i reset stat the stats accumulated from reset is gone i already modified the "use_statpoint_table: no " TY in Advance Quote Link to comment Share on other sites More sharing options...
Question
AinsLord
is there any NPC just like this?
the character will do a reset and the base level will be back to lvl 1 and do leveling again
to gain more stat points
every 10 reset there will be a reward
thanks in advance
Edited by AinsLordLink to comment
Share on other sites
7 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.