We enter the game source in input_login.cpp and look for:
ch->StartCheckSpeedHackEvent();
Under it we add:
#ifdef SET_LEVEL_FIRST_LOGIN
ch->FirstLogin();
#endif
Now we enter char.h and look for:
void SendEquipment(LPCHARACTER ch);
Under it we add:
#ifdef SET_LEVEL_FIRST_LOGIN
void FirstLogin();
#endif
Enter char.cpp and search for:
void CHARACTER::SetMarryPartner(LPCHARACTER ch)
{
m_pkChrMarried = ch;
}
Under it we add:
#ifdef SET_LEVEL_FIRST_LOGIN
void CHARACTER::FirstLogin()
{
if (!GetQuestFlag("start.first_login"))
{
ResetPoint(MINMAX(1, 99, PLAYER_MAX_LEVEL_CONST)); /* here you select your start level */
SetQuestFlag("start.first_login", 1);
}
}
#endif