Ok guys,with this update when you use /reborn command,you come warped in Adventures Plane
Code:
Find in gmcmds.cpp
thisclient->Stats->Level = 1;
thisclient->CharInfo->Exp = 0;
thisclient->ActiveQuest = 0;
thisclient->MyQuest.clear();
After Add
int x = 5098;
int y = 5322;
int map = 22;
if( (x != 0) && (y != 0) && (map != 0) )
{
fPoint coord;
coord.x = x;
coord.y = y;
MapList.Index[map]->TeleportPlayer( thisclient, coord, false );
}
I have test and work
