14.11.2011, 23:12
ta ae
PHP код:
if(!strcmp(cmd, "/agendarcadeia",true))
{
if(PlayerInfo[playerid][pAdmin] >= 1000)
{
if(PlayerInfo[playerid][pATrabalhar] < 1)
{
SendClientMessage(playerid, COLOR_WARNING, "Vocк nгo estб trabalhando! (/adm)");
return 1;
}
new salvo;
new wiiStr[70];
new tempo2 = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USE: /agendarcadeia [ Tempo ]");
return 1;
}
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendarcadeia [ Tempo ] [ Nome ]");
return 1;
}
format(wiiStr, sizeof(wiiStr), "Contas/%s.ini", result);
if(fexist(wiiStr))
{
salvo = DOF2_GetInt(wiiStr,"JailTime");
DOF2_SetInt(wiiStr,"NivelProcurado", 0);
DOF2_SetInt(wiiStr,"Preso", 6);
new resultado = salvo += tempo2 * 60;
DOF2_SetInt(wiiStr,"JailTime", resultado);
DOF2_SaveFile();
format(string, sizeof(string), "**** %s Foi preso com sucesso TEMPO >> %d Segundos ! ! !",result,resultado);
ABroadCast(COLOR_WARNING,string,1000);
}
else
{
SendClientMessage(playerid, COLOR_WARNING, "**** Esta conta nгo existe ! ! !");
}
}
else
{
SendClientMessage(playerid, COLOR_WARNING, "*** Voce nao tem permissao para usar esse comando.");
}
return 1;
}