Posts: 557
Threads: 93
Joined: Apr 2012
Reputation:
0
Hey,
I got a question, namely:
How make an ban/unban FS?
That admins can do:
/ban <id> <reason> (/ban means ban ip adress, and name.)
/unban <ip> (/unban mean that the admin got unbanned the player ip adress inc name)
And admins can do it ingame.
Thanks
Posts: 5
Threads: 0
Joined: Jun 2012
Reputation:
0
CMD:unban(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] >= 2)
{
new string[128];
if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /unban [playername]");
if( PlayerInfo[playerid][pBan] >= 1 )
{
PlayerInfo[playerid][pBan] = 0;
print("OnPlayerOfflineLogin: Variables saved properly");
format(string, 128, "[ADMIN] %s (IP:%s) was unbanned by %s.", params, PlayerInfo[playerid][pIP], GetPlayerNameEx(playerid));
SendStaffMessage(COLOR_RED,string);
new year, month,day;
getdate(year, month, day);
new playa[MAX_PLAYER_NAME];
GetPlayerName(playerid, playa, MAX_PLAYER_NAME);
format(string, sizeof(string), "[ADMIN] %s : was unbanned by %s.", params, playa);
SendStaffMessage(COLOR_RED, string);
}
else
{
SendClientMessage( playerid, COLOR_WHITE, "Not a banned account or no such account was found!" );
}
}
return 1;
}