Okay guys.. Im a total n00000b at c++. I have no idea about anything about it. I just copy pasted this scriptMy question is.. How the **** do i use it?void PlayerFirstEnter(Player * pPlayer)
{
LevelInfo * Info = objmgr.GetLevelInfo(pPlayer->getRace(), pPlayer->getClass(), 70);
pPlayer->ApplyLevelInfo(Info, 70);
pPlayer->SetUInt32Value(PLAYER_FIELD_COINAGE,10000000); // Set gold
pPlayer->_AdvanceAllSkills(375);
void SetupPlayerFirstEnter(ScriptMgr * mgr)
{
mgr->register_hook(SERVER_HOOK_EVENT_ON_FIRST_ENTER_WORLD, (void*)PlayerFirstEnter);
}
Its supposed to make people 70 when they create their chars..