SA-MP Forums Archive
Small Command Help? - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Small Command Help? (/showthread.php?tid=151026)



Small Command Help? - Antonio [G-RP] - 28.05.2010

So this is a fraction of my code.. for some reason, even though my pFLeader is '11' (LSPD) it still says that I'm not a leader of any city services...

pawn Код:
if(strcmp(cmd, "/gov", true) == 0)
{
if((PlayerInfo[playerid][pFLeader] != 11) || (PlayerInfo[playerid][pFLeader] != 13) || (PlayerInfo[playerid][pFLeader] != 12) || (PlayerInfo[playerid][pFLeader] != 16))
{
SendClientMessage(playerid, COLOR_RED, "You aren't the leader of any City Services (LSPD, EMS, GOV, NG)");
return 1;
}
Any help is GREATLY appreciated.


Re: Small Command Help? - sjvt - 28.05.2010

pawn Код:
if(strcmp(cmd, "/gov", true) == 0)
{
    if((PlayerInfo[playerid][pFLeader] == 11) || (PlayerInfo[playerid][pFLeader] == 13) || (PlayerInfo[playerid][pFLeader] == 12) || (PlayerInfo[playerid][pFLeader] == 16))
    {
        //some shit here
    }
    else
    {
        SendClientMessage(playerid, COLOR_RED, "You aren't the leader of any City Services (LSPD, EMS, GOV, NG)");
    }
    return 1;
}



Re: Small Command Help? - Antonio [G-RP] - 28.05.2010

Isn't this saying that if you ARE the leader, you cannot do it?


Re: Small Command Help? - sjvt - 28.05.2010

Quote:
Originally Posted by Antonio (eternalrp.webatu.com)
Isn't this saying that if you ARE the leader, you cannot do it?
pawn Код:
if(strcmp(cmd, "/gov", true) == 0)
{
    if((PlayerInfo[playerid][pFLeader] == 11) || (PlayerInfo[playerid][pFLeader] == 13) || (PlayerInfo[playerid][pFLeader] == 12) || (PlayerInfo[playerid][pFLeader] == 16))
    {
        //some shit here : if he is 11,12,13,16
    }
    else
    {
        SendClientMessage(playerid, COLOR_RED, "You aren't the leader of any City Services (LSPD, EMS, GOV, NG)");
    }
    return 1;
}
did something wrong xd


Re: Small Command Help? - Antonio [G-RP] - 28.05.2010

Thanks heaps bro, it worked