20.07.2014, 21:05
Primeiramente nгo recomendo usar strcmp e sscanf.
Antes de dar CTRL + C e CTRL + V, estude sscanf.
pawn Код:
if(strcmp(cmd, "/bust", true) == 0)
{
if(AdminGeral[playerid] == 1)
{
new aname, motivo[256];
if(sscanf(cmdtext, "s[6]uis[256]", cmd, plid, tempo, motivo))
{
SendClientMessage(playerid, Verde, "Uso correto: /bust [id do player] [tempo] [motivo]");
return 1;
}
format(string, sizeof(string), "O(A) Administrador %s (%d) prendeu o jogador %s por %d segundos, Motivo %s .", GetPlayerNameEx(playerid), playerid, GetPlayerNameEx(plid), tempo, motivo);
SendClientMessageToAll(tcadm, string);
SetPlayerInterior(plid, 3);
SetPlayerPos(plid, 197.6661,173.8179,1003.0234);
SetPlayerArmour(plid, 999999);
ResetPlayerWeapons(plid);
SetTimerEx("Bust", 1000*1, false, "i", plid);
}
return 1;
}