11.02.2017, 09:06
Quote:
So, what happen if i return 1 value or if I return 0 value ?
For example on this code:
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/lanzacohetes", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid, COLOR_WHITE,"[SERVIDOR]: Se te ha sido concedido un lanzacohetes.");
GivePlayerWeapon(playerid, 36, 500);
return 1;
}