29.05.2018, 03:36
Hellos guys today i'm trying to start a gm from 0 but with zcmd, someone can give me a help how can i change this cmd to zcmd:
I dont know if i have to keep coding with this type of cmd o start to use zcmd.
PHP код:
if (strcmp("/kill", cmdtext, true, 10) == 0)
{
if (IsPlayerConnected(playerid))
{
SendClientMessage(playerid, 0xFF8282AA, "You lost $1,000 to pay for your antidepressants.");
SendClientMessage(playerid, 0xFF8282AA, "Before you are discharged, Hospital staff will confiscate your weapons.");
GivePlayerMoney(playerid, -1000);
SetPlayerHealth(playerid,0);
}
return 1;
}