SA-MP Forums Archive
Faction Small Problem - 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: Faction Small Problem (/showthread.php?tid=393337)



Faction Small Problem - Akcent_Voltaj - 18.11.2012

how can i make it so i doesent work..

PHP код:
if(PlayerInfo[playerid][pLeader] != || PlayerInfo[playerid][pMember] != 0)
                    {
                        
SendClientMessage(playeridCOLOR_RED"Youre not in a faction!");
                        return 
1;
                    } 
please help!


Re: Faction Small Problem - SuperViper - 18.11.2012

pawn Код:
if(!PlayerInfo[playerid][pLeader] && !PlayerInfo[playerid][pMember])
                    {
                        SendClientMessage(playerid, COLOR_RED, "Youre not in a faction!");
                        return 1;
                    }