Jump to content
  • 0

Level Reset NPC


Vinyasa

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  27
  • Reputation:   0
  • Joined:  01/20/13
  • Last Seen:  

Does anyone happen to have a script for a level reset NPC?

Max level: 999/150 (Have to be this level to be able to reset)

Reset to: 1/1

Cost: 10m zeny (10,000,000z)

For players to be able to max out their stats.

Thanks!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

if (BaseLevel == 999 && JobLevel == 150) {
mes "It costs 10,000,000z to reset your level.";
if (Zeny < 10000000) close;
next;
if(select("Do it.:No, thanks.") == 2) close;
set Zeny, Zeny - 10000000;

// This will reset BaseLevel/JobLevel, as well as skill points.
resetlvl(2);

mes "All done!";
close;
}
mes "Your level is too low.";
close;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  27
  • Reputation:   0
  • Joined:  01/20/13
  • Last Seen:  

Thanks Euphy. Appreciated it.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...