Posts: 6,242
Threads: 8
Joined: Jun 2008
Quote:
Originally Posted by AlexMSK
PHP код:
if(PlayerInfo[playerid][LoggedIn] == 1 && PlayerInfo[playerid][Vip] != 1)//logged is an example.Replace it with your login variable.
|
This alone will fuck all the code...
If it's 0, it'll fire... If it's 1, it won't... If it's 2 it will again, and if it's 3 it will do so.
Effectively making code inaccessible.
Quote:
Originally Posted by KyNe
Код:
if(PlayerInfo[playerid][LoggedIn] == 1 && PlayerInfo[playerid][Vip] <= 1)
|
Why are you even using this? This isn't what was pasted to you.