Unban command
#1

I have searched all over the forum for this command and i have not found it yet.
I have a COD server, I tried making the unban cmd myself but i failed.
I need someone to make it for me please.

I have ladmin script.
This is the ban cmd.
Code:
CMD:ban(playerid,params[]) {
	if(PlayerInfo[playerid][LoggedIn] == 1) {
		if(PlayerInfo[playerid][Level] >= 2) {
		    new tmp[256], tmp2[256], Index;		tmp = strtok(params,Index), tmp2 = strtok(params,Index);
		    if(!strlen(params)) return SendClientMessage(playerid, red, "USAGE:{FFFFFF} /Ban [playerid] [reason]");
			if(!strlen(tmp2)) return SendClientMessage(playerid, red, "USAGE:{FFFFFF} /Ban [playerid] [reason]");
	    	new player1, playername[MAX_PLAYER_NAME], adminname[MAX_PLAYER_NAME], string[128];
			player1 = strval(tmp);

		 	if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID && player1 != playerid && (PlayerInfo[player1][Level] != ServerInfo[MaxAdminLevel]) ) {
				GetPlayerName(player1, playername, sizeof(playername)); GetPlayerName(playerid, adminname, sizeof(adminname));
				new year,month,day,hour,minuite,second; getdate(year, month, day); gettime(hour,minuite,second);
				CMDMessageToAdmins(playerid,"BAN");
				format(string,sizeof(string),"*** Player %s has been banned by Administrator %s.",playername,adminname);
				SendClientMessageToAll(red,string);
				format(string,sizeof(string),"[Reason: %s]",params[2]);
				SendClientMessageToAll(red,string);
                SaveToFile("BanLog",string);
				print(string);
                if(udb_Exists(PlayerName2(player1)) && PlayerInfo[player1][LoggedIn] == 1) dUserSetINT(PlayerName2(player1)).("banned",1);
				format(string,sizeof(string),"banned by Administrator %s. Reason: %s", adminname, params[2] );
				return BanEx(player1,params[2]);
			} else return SendClientMessage(playerid, red, "Player is not connected or is yourself or is the highest level admin");
		} else return SendClientMessage(playerid,red,"ERROR:{FF9E00} You are not a high enough level to use this command");
	} else return SendClientMessage(playerid,red,"ERROR:{FF9E00} You must be logged in to use this commands");
}
EDIT:
This is the unban cmd i tried to make but did not work idk why..

Code:
CMD:unban(playerid, params[])
{
   if(PlayerInfo[playerid][Level] >= 2 || IsPlayerAdmin(playerid))
   {
	  new target[50];
	  if(sscanf(params,"s[50]", target)) return SendClientMessage(playerid, red,"[USAGE]: /unban [player name]");
	  CMDMessageToAdmins(playerid,"UNBAN");
	} else return SendClientMessage(playerid, RED,"ERROR: You need to be level 2 to use this command!");
 	return 1;
}
Thanks.
Reply


Messages In This Thread
Unban command - by Droxx - 31.05.2017, 11:10
Re: Unban command - by coool - 31.05.2017, 12:16
Re: Unban command - by Droxx - 31.05.2017, 14:57
Re: Unban command - by Droxx - 31.05.2017, 18:24
Re: Unban command - by JasonRiggs - 31.05.2017, 18:28
Re: Unban command - by Droxx - 31.05.2017, 18:29
Re: Unban command - by JasonRiggs - 31.05.2017, 18:32
Re: Unban command - by Droxx - 31.05.2017, 18:45
Re: Unban command - by Sumit4 - 31.05.2017, 18:54
Re: Unban command - by Droxx - 31.05.2017, 19:00

Forum Jump:


Users browsing this thread: 2 Guest(s)