Loging problem
#1

Hello guys, i'd like u to help me with a little thing.

the script i use has a stupid auto kick system, that if a player doesn't writes
the right pass, it auto kicks him, and also if he tryes to much it bans him, I'd like to
remove it, and instead when he writes the wrong pass, it will give him message saying
it's wrong and that he need to attempt again. thank you
Reply
#2

Mind giving us the code, so we can try ?
Reply
#3

Search for the ping and remove it then add this under OnPlayerUpdate
pawn Код:
if(GetPlayerPing(playerid) > 1000) // edit if you want to
    {
                new Nam[MAX_PLAYER_NAME],str[128];
                GetPlayerPos(playerid,Nam,sizeof(Name));
        format(str,sizeof(str),"PINGBOT: %s has been kicked for having %d ping(MAX = 1000)",Nam,GetPlayerPing(playerid));
        SendClientMessageToAll(0xFF0000FF,str);
        Kick(playerid);
    }
Reply
#4

PHP код:
}
        else
        {
            
SendClientMessage(playeridCOLOR_RED"SERVER: Password does not match your name. you have been kicked as a result.");
            
Kick(playerid);
            return 
1;
        }
        if(
PlayerInfo[playerid][pPermBand] == 1)
        {
            new 
banstring[256];
            
format(banstring,sizeof(banstring),"AdmCmd: %s has been banned, reason: Attempting to log into a perma-banned account.",PlayerName(playerid));
            
SendClientMessageToAll(COLOR_LIGHTRED,banstring);
            
Ban(playerid);
        } 
Reply
#5

Quote:
Originally Posted by ThePandaDK
Посмотреть сообщение
lol how is that related to my question ? XD
It isn't but you aren't helping , therefore it will take longer.
Unless you supply some code.

How do we know which exact script you are using ?
Give us the code which has the kick/ban thing.

or at least some information.
Reply
#6

Quote:
Originally Posted by Jay.
Посмотреть сообщение
It isn't but you aren't helping , therefore it will take longer.
Unless you supply some code.

How do we know which exact script you are using ?
Give us the code which has the kick/ban thing.

or at least some information.
okay sorry, my fault

PHP код:
}
        else
        {
            
SendClientMessage(playeridCOLOR_RED"SERVER: Password does not match your name. you have been kicked as a result.");
            
Kick(playerid);
            return 
1;
        }
        if(
PlayerInfo[playerid][pPermBand] == 1)
        {
            new 
banstring[256];
            
format(banstring,sizeof(banstring),"AdmCmd: %s has been banned, reason: Attempting to log into a perma-banned account.",PlayerName(playerid));
            
SendClientMessageToAll(COLOR_LIGHTRED,banstring);
            
Ban(playerid);
        }
        if(
PlayerInfo[playerid][pBand] == 3)
        {
            new 
banstring[256];
            
format(banstring,sizeof(banstring),"AdmCmd: %s has been banned, reason: Attempting to log into a banned account.",PlayerName(playerid));
            
SendClientMessageToAll(COLOR_LIGHTRED,banstring);
            
Ban(playerid);
        } 
Reply
#7

pawn Код:
Kick(playerid);
Just remove it.
Reply
#8

Quote:
Originally Posted by MadeMan
Посмотреть сообщение
pawn Код:
Kick(playerid);
Just remove it.
I'v done it and it works, but i also want the "Login" dialog box to come back so he can try again.
Reply
#9

Quote:
Originally Posted by ThePandaDK
Посмотреть сообщение
I'v done it and it works, but i also want the "Login" dialog box to come back so he can try again.
You use ShowPlayerDialog for that.
Reply
#10

Quote:
Originally Posted by MadeMan
Посмотреть сообщение
You use ShowPlayerDialog for that.
but... how? what do i write there?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)