Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

help v83 for map

Newbie Spellweaver
Joined
Jun 8, 2014
Messages
74
Reaction score
1
hello , im use v83 anyone know how to keep the map automatically


like training map and you get your 100th rebirth you will automatically be warped to fm
 
Last edited:
Joined
Jul 2, 2011
Messages
783
Reaction score
230
hello , my use v83 anyone know how to keep the map automatically


like training map and you get your 100th rebirth you will automatically be warped to fm

That's the simplest piece of code ever. Just go to your rebirth method in MapleCharacter and add an if statement at the bottom.

if player.rebirthvariablehere = 100 && player.isinMap(trainingmap)
warp(fm)

You could also add something like this to the NPC script but, don't feel like writing that.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 8, 2014
Messages
74
Reaction score
1
That's the simplest piece of code ever. Just go to your rebirth method in MapleCharacter and add an if statement at the bottom.

if player.rebirthvariablehere = 100 && player.isinMap(trainingmap)
warp(fm)

You could also add something like this to the NPC script but, don't feel like writing that.



ty i will try
 
Last edited:
Upvote 0
Back
Top