• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Help getting variables?

Grehy

Killroy
Joined
Nov 21, 2008
Messages
2,631
Reaction score
33
Location
United States
I'm trying to do this;

Code:
if getPlayerGroupId(cid) > 0 and < 3 then

which returns an error, how would I do this? I want to group some groups together with a script, I can't figure this out so i have to use 5 different elseif's to make it work
 
you must writhe << getPlayerGroupid(cid) >> again
Code:
if getPlayerGroupId(cid) > 0 and getPlayerGroupId(cid) < 3 then
 
Back
Top