Quote:
Originally Posted by Stefand
Update: WOW IM STUPID
pawn Code:
if(Authenticated[playerid])
I did not define to check if its true ;S
Changed it to:
pawn Code:
if(Authenticated[playerid] == true)
And its saving now :P
|
If Authenticated is a bool variable then it doesn't matter if you do == true or without == true.