Why does this not log me in ?
#1

So this is from a filterscript ( Xtreme's ) I think


Im just wondering why does this not automatically log me in once i have registered ?


pawn Код:
public OnPlayerConnect(playerid) {
    new string[256],PlayerName[24],file[256]; file = GetPlayerFile(playerid);
    GetPlayerName(playerid,PlayerName,24); if(!dini_Exists(file)) CreateUserConfigFile(playerid);
    for(new i = 0; i < 100; i++) {
        if(strfind(PlayerName,ForbidNames[i],true)!=-1 && Config[ForbidData]) {
            switch(Config[ForbidData]) { case 1: Kick(playerid); case 2: Ban(playerid); }
            return 1;
        }
    }
    if(Config[DisplayServerMessage]) { format(string,sizeof(string),"Server Message: %s",dini_Get("/xadmin/Configuration/Configuration.ini","ServerMessage")); SendClientMessage(playerid,green,string); }
    Variables[playerid][Registered] = GetPlayerFileVar(playerid,"Registered"),
    Variables[playerid][Level] = GetPlayerFileVar(playerid,"Level");
    Variables[playerid][Wired] = GetPlayerFileVar(playerid,"Wired");
    Variables[playerid][Jailed] = GetPlayerFileVar(playerid,"Jailed");
    if(Variables[playerid][Wired]) SetUserInt(playerid,"WiredWarnings",Config[WiredWarnings]);
    if(Variables[playerid][Level] > Config[MaxLevel]) { Variables[playerid][Level] = Config[MaxLevel]; SetUserInt(playerid,"Level",Config[MaxLevel]); }
    if(!Variables[playerid][Registered]) format(string,256,"Welcome, %s.To register a account, type \"/REGISTER <PASSWORD>\".",PlayerName);
    else {
        new tmp[50],tmp2[256]; GetPlayerIp(playerid,tmp,50); tmp2 = dini_Get(file,"IP");
        if(!strcmp(tmp,tmp2,true)) {
            format(string,256,"Welcome back, %s. You have automatically been logged in.",PlayerName);
            Variables[playerid][LoggedIn] = true;
        }
        else {
            format(string,256,"Welcome back, %s. To log back into your account, type \"/LOGIN <PASSWORD>\".",PlayerName);
            Variables[playerid][LoggedIn] = false;
        }
    }
    SendClientMessage(playerid,yellow,string);
    for(new i = 0; i < MAX_VEHICLES; i++) if(VehicleLockData[i]) SetVehicleParamsForPlayer(i,playerid,false,true);
    if(Config[DisplayConnectMessages]) { format(string,256,"*** %s has joined the server.",PlayerName); for(new i = 0; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i) && playerid != i) SendClientMessage(i,grey,string); }
    return 1;
}

Thank You
Reply
#2

Please Help Me Please
Reply
#3

Please Help Me Is It Something To Do With The FilterScript Or The GM ?
Reply
#4

60+ Views and no comments ?


Please Help
Reply
#5

i quess its because the IP should be Intget, not get as it is an integer,

also i dont get if(!strcmp(tmp,tmp2,true)) {

it says if the tmp and tmp2 are NOT the same
Reply
#6

Quote:
Originally Posted by jop9888
Посмотреть сообщение
i quess its because the IP should be Intget, not get as it is an integer,

also i dont get if(!strcmp(tmp,tmp2,true)) {

it says if the tmp and tmp2 are NOT the same
So what should i remove ?
Reply
#7

Add a debug message to see if it's getting the right IPs

pawn Код:
new tmp[50],tmp2[256]; GetPlayerIp(playerid,tmp,50); tmp2 = dini_Get(file,"IP");
printf("tmp=|%s|   tmp2=|%s|",tmp,tmp2);
Then run the server, connect and check server console.
Reply
#8

Quote:
Originally Posted by MadeMan
Посмотреть сообщение
Add a debug message to see if it's getting the right IPs

pawn Код:
new tmp[50],tmp2[256]; GetPlayerIp(playerid,tmp,50); tmp2 = dini_Get(file,"IP");
printf("tmp=|%s|   tmp2=|%s|",tmp,tmp2);
Then run the server, connect and check server console.
Yes it is getting the IPS


Please Help Me
Reply
#9

What does it say when you connect?
Reply
#10

Quote:
Originally Posted by MadeMan
Посмотреть сообщение
What does it say when you connect?
It just says " Welcome Back Test_Account, You have been automatically logged in" But i just sit on the same screen and i cant do anything....


Please Help
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)