30.01.2013, 00:04
Ahн va "nombre" no "id" Esa es la razуn por la cual el nombre no es mostrado.
PHP код:
CMD:jetpack(playerid, params[])
{
new id, string[128], string2[128];
if(!IsPlayerAdmin(playerid)) return 0;
{
if(sscanf(params,"u",id)) return SendClientMessage(playerid,COLOR_RED,"[ERROR]: /jetpack [playerID]");
else
new nombre[MAX_PLAYER_NAME];
new nombre2[MAX_PLAYER_NAME];
GetPlayerName(playerid, nombre2, sizeof(nombre2));
GetPlayerName(id, nombre, sizeof(nombre));
SetPlayerSpecialAction(id,SPECIAL_ACTION_USEJETPACK);
format(string, sizeof(string),"Le diste a %s un jetpack!", nombre);
SendClientMessage(playerid, COLOR_GREEN, string);
format(string2 ,sizeof(string2),"%s te dio un jetpack!",nombre2);
SendClientMessage(id, COLOR_GREEN, string2);
}
return 1;
}