Jump to content
  • 0

NPC rebirth


elcontrol00

Question


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  236
  • Reputation:   1
  • Joined:  04/25/12
  • Last Seen:  

Hello everyone! :) And happy thanksgiving! <3 .

I would like to request a couple of NPC's Information about the NPCs:

First of all I want a NPC that when you log on the game there is a NPC that let's you choose what kind of job you want to be it could be anything baby 2nd job except 3rd jobs and be able to cancel just in case and makes you 999/500 level/job.

Now the second NPC: I would like one that once your level 999/500 if you click it you can rebirth now i want it to just reset your level not your class or your skills and keep all your status .

Third NPC: i would like a sex changer that lets you change sex for 999,999,999 zeny.

Thank you for reading this and have a wonderful thanksgiving! :D

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:  

First: http://www.eathena.ws/board/index.php?showtopic=269869

Second:

if (BaseLevel == 999 && JobLevel == 500) {
mes "Do you want to rebirth now?";
next;
if(select("Yes:No") == 2) close;
resetlvl(3);
mes "All done.";
close;
}
end;

Third:

if (Zeny < 1000000000) {
mes "You need 999,999,999 Zeny to change sex.";
close;
}
mes "Change sex?";
mes "It'll cost 999,999,999 Zeny.";
next;
if(select("Yes:No") == 2) close;
set Zeny, Zeny-999999999;
changesex;
end;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  236
  • Reputation:   1
  • Joined:  04/25/12
  • Last Seen:  

Thanks for the fast reply! :D and how can i make them npc? so i can place them where i want?

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...