user.h
COMMAND_HANDLER(HandleAllUpCommand);
=============================================================================================
ChatHandler.cpp
{ "all", &CUser::HandleAllUpCommand, "All stats."},
=============================================================================================
ChatHandler.cpp
COMMAND_HANDLER(CUser::HandleAllUpCommand)
if (!isGM())
return false;
this->LevelChange(83, true);
this->SetStat(StatType::STAT_STR, 255);
this->SetStat(StatType::STAT_STA, 255);
this->SetStat(StatType::STAT_DEX, 255);
this->SetStat(StatType::STAT_INT, 255);
this->SetStat(StatType::STAT_CHA, 255);
this->m_sPoints = 0;
this->ResetWindows();
SendMyInfo();
g_pMain->SendHelpDescription(this, "[GM] : Lvl 83 ve Stat 255 Oldunuz Tebikler.");
return true;
}