Crash when someone connects!
#10

Try changing
pawn Код:
if(fexist(string))
{
gPlayerAccount[playerid] = 1;
    onrequest[playerid] = 1;
    logindelay[playerid] = 5;
SendClientMessage(playerid, RED, " Welcome to United States - Roleplay !        ");
SendClientMessage(playerid, COLOR_LIGHTBLUE, " You can now login by typing /login <password> ");
return 1;
}
else
{
    onrequest[playerid] = 1;
gPlayerAccount[playerid] = 0;
SendClientMessage(playerid, ADMIN_RED, " Welcome to United States - Roleplay !  ");
SendClientMessage(playerid, COLOR_LIGHTBLUE, " If you dont have an account. Please register by using /register [password] ");
    SendClientMessage(playerid, COLOR_LIGHTBLUE, " If you have an account. Please login by typing /login [password]");

return 1;
}
}
To

pawn Код:
if(fexist(string))
{
gPlayerAccount[playerid] = 1;
    onrequest[playerid] = 1;
    logindelay[playerid] = 5;
SendClientMessage(playerid, RED, " Welcome to United States - Roleplay !        ");
SendClientMessage(playerid, COLOR_LIGHTBLUE, " You can now login by typing /login <password> ");

}
else
{
    onrequest[playerid] = 1;
gPlayerAccount[playerid] = 0;
SendClientMessage(playerid, ADMIN_RED, " Welcome to United States - Roleplay !  ");
SendClientMessage(playerid, COLOR_LIGHTBLUE, " If you dont have an account. Please register by using /register [password] ");
    SendClientMessage(playerid, COLOR_LIGHTBLUE, " If you have an account. Please login by typing /login [password]");
}
return 1;
}
Reply


Messages In This Thread
Crash when someone connects! - by KeyWay - 05.06.2009, 22:40
Re: Crash when someone connects! - by Luka P. - 05.06.2009, 22:42
Re: Crash when someone connects! - by KeyWay - 05.06.2009, 22:44
Re: Crash when someone connects! - by [TouchX]Ash - 05.06.2009, 22:56
Re: Crash when someone connects! - by KeyWay - 05.06.2009, 23:03
Re: Crash when someone connects! - by Luka P. - 06.06.2009, 10:13
Re: Crash when someone connects! - by Fay-Tony - 06.06.2009, 10:57
Re: Crash when someone connects! - by Luka P. - 06.06.2009, 11:46
Re: Crash when someone connects! - by KeyWay - 06.06.2009, 12:15
Re: Crash when someone connects! - by Luka P. - 06.06.2009, 12:19

Forum Jump:


Users browsing this thread: 1 Guest(s)