Ban cmds
#1

PHP код:
CMD:ban(playerid,params[]) {
    if(
IsPlayerAdmin(playerid)) {
            new 
strdate[128],strtime[128], tmp[256], tmp2[256], Index;        tmp strtok(params,Index), tmp2 strtok(params,Index);
            if(!
strlen(params)) return SendClientMessage(playerid0xDC143CAA"USAGE: /ban [playerid] [reason]");
            if(!
strlen(tmp2)) return SendClientMessage(playerid0xDC143CAA"ERROR: You must give a reason");
              new 
player1ip[128], string[128];
            
player1 strval(tmp);
             if(
IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID && player1 != playerid && !IsPlayerAdmin(player1)) {
                
GetPlayerIp(playerid,ip,sizeof(ip));
                new 
year,month,day,hour,minuite,secondgetdate(yearmonthday); gettime(hour,minuite,second);
                
format(string,sizeof(string),"|- %s has been banned by Administrator %s [Reason: %s] [Date: %d/%d/%d] [Time: %d:%d] -|",Name[player1],Name[playerid],params[2],day,month,year,hour,minuite);
                
SendClientMessageToAll(COLOR_Silver,string);
                print(string);
                
format(strdatesizeof(strdate), "%d-%d-%d ",year,month,day);
                
format(strtime,sizeof(strtime),"%d:%d:%d",hour,minuite,second);
                new 
Query[250];
                
format(Querysizeof(Query), "UPDATE `banneds` SET `ip` = '%s', `date` = '%s', `time` = '%s', `bannedby` = '%s', `banned` = '%d', `reason` = '%s' WHERE `name` = '%s'"ip,strdate,strtime,Name[playerid],1,params[2],Name[playerid]);
                
mysql_tquery(mysqlQuery""""); totalbans ++;
                
format(Querysizeof(Query),"INSERT INTO `bannedips`(`ip`) VALUES ('%s')",ip);
                
mysql_tquery(mysqlQuery""""); totalip ++;
                return 
SetTimerEx("kickplayer"500false"i"tmp);
             } else return 
SendClientMessage(playerid0xDC143CAA"Player is not connected or is yourself or is the highest level admin");
    } else return 
SendClientMessage(playerid,0xDC143CAA,"ERROR: You are not a high enough level to use this command");
}
CMD:tempban(playerid,params[]) {
    if(
IsPlayerAdmin(playerid)) {
            new 
strdate[128],strtime[128], player1w[128], reason[128], byearw[128],bmonthw[128],bdayw[128], Indexplayer1w strtok(params,Index), reason strtok(params,Index); byearw strtok(params,Index), bmonthw strtok(params,Index), bdayw strtok(params,Index);
            if(!
strlen(player1w)) {
            
SendClientMessage(playerid0xDC143CAA"USAGE: /tempban [playerid] [reason] [years months days]");
            return 
SendClientMessage(playerid0xFF9900AA"Example: /tempban 1 example 0 0 6 [ player will be banned for six days ]");
            }
            if(!
strlen(reason)) return SendClientMessage(playeridred"ERROR: You must give a reason");
            if(!
strlen(byearw)) return SendClientMessage(playeridred"ERROR: You must give a year");
            if(!
strlen(bmonthw)) return SendClientMessage(playeridred"ERROR: You must give a month");
            if(!
strlen(bdayw)) return SendClientMessage(playeridred"ERROR: You must give a day");
            new 
player1n,byearn,bmonthn,bdayn,ip[128], string[150];
            
player1n strval(player1w); byearn strval(byearw); bmonthn strval(bmonthw); bdayn strval(bdayw);
             if(
IsPlayerConnected(player1n) && player1n != INVALID_PLAYER_ID) {
                
GetPlayerIp(playerid,ip,sizeof(ip));
                new 
year,month,day,hour,minuite,secondgetdate(yearmonthday); gettime(hour,minuite,second);
                
format(string,sizeof(string),"|- %s has been temporary banned by Administrator %s [Reason: %s] [Date: %d/%d/%d] [Time: %d:%d] -|",Name[player1n],Name[playerid],params[2],day,month,year,hour,minuite);
                
SendClientMessageToAll(COLOR_Silver,string);
                print(string);
                
format(strdatesizeof(strdate), "%d-%d-%d ",year,month,day);
                
format(strtime,sizeof(strtime),"%d:%d:%d",hour,minuite,second);
                new 
tempbandate[3],bandate[128];
                
tempbandate[0] = year+byearntempbandate[1] = month+bmonthntempbandate[2] = day+bdayn;
                
format(bandate,sizeof bandate,"%d-%d-%d",tempbandate[0],tempbandate[1],tempbandate[2]);
                new 
Query[250];
                
format(Querysizeof(Query), "UPDATE `banneds` SET `ip` = '%s', `date` = '%s', `time` = '%s', `bannedby` = '%s', `tempban` = '%d', `reason` = '%s', `bdate` = '%s' WHERE `name` = '%s'"ip,strdate,strtime,Name[playerid],1,params[2],bandate,Name[player1n]);
                
mysql_tquery(mysqlQuery""""); printf("%s",Query); totalbans ++;
                
format(Querysizeof(Query),"INSERT INTO `bannedips`(`ip`) VALUES ('%s')",ip);
                
mysql_tquery(mysqlQuery""""); totalip ++;
                return 
SetTimerEx("kickplayer"500false"i"player1n);
             } else return 
SendClientMessage(playerid0xDC143CAA"Player is not connected or is yourself or is the highest level admin");
    } else return 
SendClientMessage(playerid,0xDC143CAA,"ERROR: You are not a high enough level to use this command");

I don't get any error while complaining but cmd doesnt work in game whenever i type it. Any idea?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)