13.11.2010, 20:02
Hi, in my server - everyone can use teleport commands etc, and is there a way to disable ALL commands while in jail?
This is my /jail command so far
This is my /jail command so far
pawn Код:
if(strcmp(cmd, "/jail", true) == 0)
{
new tmp2[256];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /jail [playerid] [time]");
tmp2 = strtok(cmdtext, idx);
new money = strval(tmp2);
if(!strlen(tmp2)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /jail [playerid] [time]");
new playa;
playa = ReturnUser(tmp);
if(PlayerInfo[playerid][pAdmin] < 2) return DenyMessage(playerid, 2);
if(!IsPlayerConnected(playa)) return SendClientMessage(playerid, COLOR_WHITE, "Invalid Player ID.");
if(PlayerInfo[playerid][pAdmin] < PlayerInfo[playa][pAdmin]) return SendClientMessage(playerid, COLOR_BRIGHTRED, "You can't jail a higher level Admin !");
if(playa != INVALID_PLAYER_ID)
{
PlayerInfo[playa][pPrisonTime] = money;
PlayerInfo[playa][pPrison] = 1;
GetPlayerName(playa, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
ResetPlayerWeapons(playa);
GameTextForPlayer(playa, "~r~Busted", 3000, 3);
SetPlayerInterior(playa, 3); //(0 eller 3)
SetPlayerPos(playa, 198.5319,162.3093,1003.0300); //(579.90295410156, -3190.4956054688, 11.467748641968) (198.5319,162.3093,1003.0300)
format(string, sizeof(string), "\"%s\" has been jailed by Admin \"%s\" for %d seconds.", giveplayer, sendername, money);
SendClientMessageToAll(COLOR_YELLOW, string);
SetTimerEx("UnJail",PlayerInfo[playa][pPrisonTime]*1000,0,"d",playa);
}
return 1;
}
if(strcmp(cmd, "/unjail", true) == 0)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /unjail [playerid]");
new playa = ReturnUser(tmp);
if(PlayerInfo[playerid][pAdmin] < 2) return DenyMessage(playerid, 2);
if(!IsPlayerConnected(playa)) return SendClientMessage(playerid, COLOR_WHITE, "Invalid Player ID.");
if(playa != INVALID_PLAYER_ID)
{
GetPlayerName(playa, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
SetPlayerWorldBounds(playerid,20000.0000,-20000.0000,20000.0000,-20000.0000); //Reset world to player
SetPlayerInterior(playa, 0);
SetPlayerPos(playa, 645.0193,-3114.3647,10.9957);
format(string, sizeof(string), "\"%s\" has been un-jailed by Admin \"%s\".", giveplayer, sendername);
SendClientMessageToAll(COLOR_YELLOW, string);
}
return 1;
}