13.02.2014, 21:23
seria isso amigo?
pawn Код:
command(comando, playerid, params [])
{
new id, string[24];
if(sscanf(params, "ds[24]", id, string)) return false;
if(!IsPlayerConnected(id)) return false;
if(!strcmp(string, "FT", true))
{
SetPlayerSkin(playerid, 267);
return true;
}
if(!strcmp(string, "ROCAM", true))
{
SetPlayerSkin(playerid, 266);
return true;
}
return true;
}