22.07.2013, 23:26
usando o seu como base
tenta ae
pawn Code:
//TOPO Do gamemode
new tanogod[MAX_PLAYERS] = 0;
// OnPlayerConnect
tanogod[playerid] = 0;
//onplayercommand
if (strcmp("/god", cmdtext, true, 10) == 0)
{
tanogod[playerid] = 1;
SetPlayerHealth(playerid, 999999);
SendClientMessage(playerid, -1, "[GOD] Vocк ativou o modo god, para desativar digite: (/god)");
return 1;
}
if (strcmp("/ofgod", cmdtext, true, 10) == 0)
{
if(tanogod[playerid] == 0)
{
SendClientMessage(playerid, -1, "Nao tens god ligado");
return 1;
}
else
{
tanogod[playerid] = 0;
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid, -1, "[GOD] Vocк desativou o modo god. (/god)");
}
return 1;
}