HERAKLES Otomatik Avlı kalıcı sunucu. 19 Haziran'da açılıyor. Atius & Wizard güvencesiyle hemen kayıt ol, ön kayıt ödülleri aktif. HEMEN TIKLA!
Selamlar,
GM char için full 255 stat kodları aşağıdaki gibidir.
[CODE title="user.h"]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;
}[/CODE]
GM char için full 255 stat kodları aşağıdaki gibidir.
[CODE title="user.h"]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;
}[/CODE]
