19.02.2009, 19:43
instead of
just replace the 'cmd' with 'cmdtext' so,
pawn Код:
if(strcmp(cmd, "/kill", true) == 0)
{
SetPlayerHealth(playerid, 0.0);
return 1;
}
pawn Код:
if(strcmp(cmdtext, "/kill", true) == 0)
{
SetPlayerHealth(playerid, 0.0);
return 1;
}