Nigga
Administrator
Dołączył: 18 Mar 2008
Posty: 43
Przeczytał: 0 tematów
Ostrzeżeń: 0/5
|
Wysłany: Wto 14:29, 18 Mar 2008 Temat postu: [CODE] /gmcriticals |
|
|
/gmcriticals
Esto es para que los gms pongan /gmcriticals y les de 2000 criticals a cambio de nada (solo por ser GMs) xD
Al principio comprueba si eres gm (desde admin lvl 1 funciona)
En el HGServer
En Game.cpp
Buscar /who y agregar abajo
Kod: |
//gmcriticals by mihd
if (memcmp(cp, "/gmcriticals",10) == 0) {
GetGMCrits(iClientH);
return;
} |
Y al final de Game.cpp agregar
Kod: |
//gmcriticals by MIHD
void CGame::GetGMCrits(int iClientH) {
if(m_pClientList[iClientH] == NULL) return;
if (m_pClientList[iClientH]->m_iAdminUserLevel < 1) return;
m_pClientList[iClientH]->m_iSuperAttackLeft += 2000;
SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, "Tu GM ha ganado 2000 Criticals - By MIHD");
} |
En game.h buscar
Kod: |
void ReqCreateCraftingHandler(int iClientH, char *pData); |
agregar abajo
Code:
Kod: |
void GetGMCrits(int iClientH); //By MIHD |
100% testeada y funcionando
100% By MIHD
Post został pochwalony 0 razy
|
|