29.03.2017, 10:00
Yes it is and we are using zcmd there if you want to make it the ordinary way then here it is:
PHP код:
if(!strcmp("/kill", cmdtext))
{
SetPlayerHealth(playerid, 0);
return 1;
}
if(!strcmp("/heal", cmdtext))
{
SetPlayerHealth(playerid, 100.0);
return 1;
}