Need help with this Command[+rep]
#1

Ok, so this command Works Good, no problem with it but i want to add something to it which i tired and it didnt work

Command is /jail [ID]

pawn Код:
COMMAND:jail(playerid, params[])
{
if(PlayerInfo[playerid][PlayerAdmin] <= JAIL_LEVEL) return SendClientMessage(playerid,COLOR_WHITE, "SERVER: Unknown command.");
new targetid;
if(sscanf(params,"u", targetid)) return SendClientMessage(playerid, COLOR_WHITE, ""WHITE"Usage: "GREEN"/jail "WHITE"[playerid]");
new ID = targetid;new string[128];
if(IsPlayerConnected(ID))
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string,sizeof(string),"You have been Admin jailed by "SININE"%s",name);
SendClientMessage(ID,COLOR_SININE, string);
new rand = random(sizeof(RandomJail));
SetPlayerPos(ID, RandomJail[rand][0], RandomJail[rand][1], RandomJail[rand][2]);
ResetPlayerWeapons(ID);
SetPlayerInterior(ID, 3);
}
return 1;
}
I want to add "/jail [ID] [reason]" can you please help me on this?
Reply


Messages In This Thread
Need help with this Command[+rep] - by ZBits - 21.01.2013, 00:32
Re: Need help with this Command[+rep] - by Dragonborn - 21.01.2013, 00:38
Re: Need help with this Command[+rep] - by ZBits - 21.01.2013, 00:40
Re: Need help with this Command[+rep] - by LarzI - 21.01.2013, 00:55
Re: Need help with this Command[+rep] - by Jewell - 21.01.2013, 01:24
Re: Need help with this Command[+rep] - by batonsa - 21.01.2013, 08:13

Forum Jump:


Users browsing this thread: 1 Guest(s)