Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: [VSS]Shawn on Jun 23, 2015, 06:19 PM

Title: Login
Post by: [VSS]Shawn on Jun 23, 2015, 06:19 PM
Hello Guys I am facing problem in Login System When Ever i do /login wrong pass its say wrong password but when i do /login correctpassword it give error in console

Trying to Set Null
and Give Line in Login System


function Login(player)
{

local q = QuerySQL( db, "SELECT * FROM Accounts WHERE Name='" + player.Name + "'" );
if ( GetSQLColumnData( q, 0 ) != null )
{
Here >>>>>>>>>>>>>>>>> pinfo[ player.ID ].Level = GetSQLColumnData( q, 3 );     
pinfo[ player.ID ].cash = GetSQLColumnData( q, 5 );
pinfo[ player.ID ].Bank = GetSQLColumnData( q, 6 );
pinfo[ player.ID ].WantedLevel = GetSQLColumnData( q, 13 );  
pinfo[ player.ID ].Job = GetSQLColumnData( q, 14 );
pinfo[ player.ID ].Warns = GetSQLColumnData( q, 10 );
pinfo[ player.ID ].MCount = GetSQLColumnData( q, 17 );
pinfo[ player.ID ].GCount = GetSQLColumnData( q, 15 );
pinfo[ player.ID ].VCount = GetSQLColumnData( q, 16 );
pinfo[ player.ID ].PhCount = GetSQLColumnData( q, 7 );
pinfo[ player.ID ].PCount = GetSQLColumnData( q, 11 );
}
ClientMessage ("Your Logged In Successfully", player ,255,255,0);
QuerySQL(db, "UPDATE Accounts SET IP='" + player.IP + "' WHERE Name='" + player.Name + "'");
QuerySQL(db, "UPDATE Accounts SET LastLogin='" + GetFullTime()+ "' WHERE Name='" + player.Name + "'");
binfo[player.ID].logged=true; 
}
Title: Re: Login
Post by: . on Jun 23, 2015, 06:21 PM
Which line? I don't plan on reading all that crap and trying to guess. And I can't test it either since I'm missing your environment.

For f* sake if you people can't find the line number you should at least post a screenshot of the console output that encapsulates the entire error output.
Title: Re: Login
Post by: Thijn on Jun 23, 2015, 06:41 PM
Do you actually assign a class to that pinfo array?
Title: Re: Login
Post by: [VSS]Shawn on Jun 23, 2015, 08:28 PM
Yeah Thijn i add this on pinfo class