15.05.2013, 19:40
Galera, como faзo para os adms abaixo do lvl 1339 с pode dar carandiru para os adm maior q lvl 1340, e q ninguem consiga colocar o adm 1342 no carandiru, sу ele mesmo.
pawn Код:
if(strcmp(cmd, "/carandiru",true) == 0)
{
if(IsPlayerConnected(playerid))
{
new tempo1[20];
new tempo2;
if(PlayerInfo[playerid][pAdmin] >= 4)
{
tmp = strtok(cmdtext, idx);
tempo1 = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /carandiru [id] [Tempo] [Motivo]");
return true;
}
if(!strlen(tempo1))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /carandiru [id] [Tempo] [Motivo]");
return true;
}
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342) // 1342 coloque o nivel do admin q n precisa ta trabalhando para prender
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return true;
}
giveplayerid = ReturnUser(tmp);
tempo2 = strval(tempo1);
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(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
//PlayerInfo[giveplayerid][pJailTime] = time * 60;
//format(string, sizeof(string), "* Vocк Colocou o(a) %s No carandiru", giveplayer);
format(string, sizeof(string), "Admin %s colocou %s no carandiru, por %s minutos, Motivo: %s",PlayerName(playerid), giveplayer, tempo1, (result));
SendClientMessageToAll(0xF83100AA, string);
if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
{
SendClientMessage(giveplayerid, COLOR_LIGHTRED, "* Vocк foi colocado no carandiru.");
}
else
{
format(string, sizeof(string), "* Vocк foi colocado no carandiru, Pelo Admin %s.", PlayerName(playerid));
SendClientMessage(giveplayerid, COLOR_LIGHTRED, string);
}
GameTextForPlayer(giveplayerid, "~b~Bem Vindo ao ~n~~r~Carandiru", 5000, 3);
ClearAnimations(giveplayerid);
RemovePlayerAttachedObject(giveplayerid,4);
SetPlayerSpecialAction(giveplayerid, SPECIAL_ACTION_NONE);
ResetPlayerWeaponsEx(giveplayerid);
WantedPoints[giveplayerid] = 0;
SetPlayerWantedLevel(giveplayerid, 0);
PlayerInfo[giveplayerid][pJailed] = 2;
PlayerInfo[giveplayerid][pJailTime] = tempo2 * 60;
//PlayerInfo[giveplayerid][pMuted] = 1;
SetPlayerInterior(giveplayerid, 0);// (seta o interior do player ("0 = rua"))
SetPlayerPos(giveplayerid, 268.5777,1857.9351,9.8133);
SetPlayerWorldBounds(giveplayerid, 337.5694,101.5826,1940.9759,1798.7453); //285.3481,96.9720,1940.9755,1799.0811
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo tem permissгo para usar esse comando!");
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " O jogador estб offline !");
return true;
}
}
return true;
}