20.07.2014, 20:43
alguem pode mim ajuda fiz esse comando agora so que o tempo ta getando meu id nao geta os segundos pra fica preso
pawn Код:
if(strcmp(cmd, "/bust", true) == 0)
if(AdminGeral[playerid] == 1)
{
new tmp[256], plid, aname, motivo[256];
tmp = strtok(cmdtext, idx);
if(sscanf(cmdtext, "s[7]us[256]", cmd, plid, motivo))
{
SendClientMessage(playerid, Verde, "Uso correto: /bust [id do player] [tempo] [motivo]");
return 1;
}
plid = strval(tmp);
format(file, sizeof(file), PASTA_CONTAS, aname);
new Second = strval(tmp);
{
format(string, sizeof(string), "O(A) Administrador %s (%d) prendeu o jogador %s por %d segundos, Motivo %s .", GetPlayerNameEx(playerid), playerid, GetPlayerNameEx(plid), Second, 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;
}