27.09.2013, 22:59
tenta
Code:
CMD:matar(playerid, params[]) { if(sscanf(params, "u", params[0])) return SendClientMessage(playerid, 0xFFFFFFFF, "Uso correcto: /matar [player id]"); if(IsPlayerConnected(params[0])) { new string[60]; // yo colocado aquн por causa de indentaciуn lуgica SetPlayerHealth(params[0], 0.0); format(string, sizeof(string), "Has matado al jugador numero %d!", params[0]); SendClientMessage(playerid, 0xFFFFFFFF, string); } else SendClientMessage(playerid, 0xFFFFFFFF, "Ese jugador no esta conectado!"); return 1; }