Question
#1

I Want a CMD to be used for Admins & helpers
Here my admin code
if (PlayerInfo[playerid][pAdmin] >= 1) and here my helper one if (PlayerInfo[playerid][pHelper] >= 1)
I Want the command to be usable for admins & helpers how can i do that?
Reply
#2

Quote:
Originally Posted by DeeCaay
Посмотреть сообщение
I Want a CMD to be used for Admins & helpers
Here my admin code
if (PlayerInfo[playerid][pAdmin] >= 1) and here my helper one if (PlayerInfo[playerid][pHelper] >= 1)
I Want the command to be usable for admins & helpers how can i do that?
Using:

pawn Код:
if(PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pHelper] >= 1)
If not working, try:

pawn Код:
if(PlayerInfo[playerid][pAdmin] >= 1 && PlayerInfo[playerid][pHelper] >= 1)
Reply
#3

Thanks, man.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)