04.02.2016, 07:50
dont mind the intention
PHP код:
CMD:heal(playerid,params[])
{
if(!strlen(params)) return SendClientMessage(playerid, -1, "usage: /heal [health/armour]"); // or isnull(params)
if(! strcmp(params, "health", true, 6))
{
SetPlayerHealth(playerid,100.0);
}
else if(! strcmp(params, "armour", true, 6)
{
setplayerarmour(playerid,100.0);
}
return 1;
}