SA-MP Forums Archive
some 21 warnind all same and same line? How fix - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: some 21 warnind all same and same line? How fix (/showthread.php?tid=614180)



some 21 warnind all same and same line? How fix - b0b - 05.08.2016

PHP код:
warning 213tag mismatch 
PHP код:
if(Logged[playerid] == true
PHP код:
new
    
Logged[MAX_PLAYERS],
    
gOocMAX_PLAYERS ]




Re: some 21 warnind all same and same line? How fix - SyS - 05.08.2016

PHP код:
bool:Logged[MAX_PLAYERS
add boolean tag


Re: some 21 warnind all same and same line? How fix - Stinged - 05.08.2016

Add the bool tag.
Код:
new 
    bool: Logged[MAX_PLAYERS], 
    gOoc[ MAX_PLAYERS ] 
;



Re: some 21 warnind all same and same line? How fix - F1N4L - 05.08.2016

Код:
new 
    bool:Logged[MAX_PLAYERS], 
    gOoc[ MAX_PLAYERS ] 
;



Re: some 21 warnind all same and same line? How fix - Shinja - 05.08.2016

PHP код:
bool:Logged[MAX_PLAYERS], 
gosh 4 posts same time


Re: some 21 warnind all same and same line? How fix - FreAkeD - 05.08.2016

You haven't used the bool: tag in the variable.

https://sampforum.blast.hk/showthread.php?tid=525379


Re: some 21 warnind all same and same line? How fix - b0b - 05.08.2016

now it aduty how fix this? :P


Re: some 21 warnind all same and same line? How fix - Shinja - 05.08.2016

Lines...


Re: some 21 warnind all same and same line? How fix - b0b - 05.08.2016

Quote:
Originally Posted by Shinja
Посмотреть сообщение
Lines...
PHP код:
if (aDuty[playerid] == 0//Check if player is on duty 



Re: some 21 warnind all same and same line? How fix - J0sh... - 05.08.2016

Quote:
Originally Posted by b0b
Посмотреть сообщение
PHP код:
if (aDuty[playerid] == 0//Check if player is on duty 
Just do if (!aDuty[playerid) // 0
or if (aDuty[playerid]) // 1