Multi account & Ban evade
#1

I have an txt that save multi account data per IP ( /aka cmd )

1. I want to know how can I make an auto-check if any player join my server, It will check the player IP from the txt that I mention above, and it will show a dialog to any admin onlines that this player have multi-account and show all his/her accounts that already exist.

2. I want to know how can I make a cmd that load the txt, If one of their old account was banned,t will show a dialog to any admin onlines that this player was banned before. ( Ban Evade )

By the way Im using ladmin :

PHP код:
CMD:aka(playerid,params[])
{
    if(
PlayerInfo[playerid][Level] >= || IsPlayerAdmin(playerid))
    {
    if(
isnull(params)) return SendClientMessage(playeridred"USAGE : {FFFFFF}/aka [ID]");
    new 
player1playername[MAX_PLAYER_NAME], str[128], tmp3[50];
    
player1 strval(params);
    if(
IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID)
    {
                
GetPlayerIp(player1,tmp3,50);
            
GetPlayerName(player1playernamesizeof(playername));
            
format(str,sizeof(str),"%s [%d] [%s] %s"playernameplayer1tmp3dini_Get("ladmin/config/aka.txt",tmp3));
            return 
SendClientMessage(playerid,COLOR_PURPLE,str);
        }
        else return 
SendClientMessage(playeridred"Player is not connected or is yourself");
    }
    else return 
SendClientMessage(playerid,red,"Invalid Command ! Use {FFFFFF}/cmds");

Reply


Messages In This Thread
Multi account & Ban evade - by Sh4d0w2 - 18.12.2015, 05:39
Re: Multi account & Ban evade - by Sh4d0w2 - 19.12.2015, 01:24
Re: Multi account & Ban evade - by Abagail - 19.12.2015, 02:05
Re: Multi account & Ban evade - by Sh4d0w2 - 19.12.2015, 02:45
Re: Multi account & Ban evade - by Abagail - 19.12.2015, 03:13
Re: Multi account & Ban evade - by Sh4d0w2 - 19.12.2015, 03:21

Forum Jump:


Users browsing this thread: 1 Guest(s)