• 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!

Two Simple Functions

chojrak

Banned User
Joined
Oct 25, 2008
Messages
5,832
Solutions
2
Reaction score
160
Hello I've written two simple functions:
Code:
function isFemale(cid)
	return getPlayerSex(cid) == 0 and true or false
end

function isMale(cid)
	return getPlayerSex(cid) == 1 and true or false
end

Insteand of using
Code:
getPlayerSex(uid) == x

:)
 
I find them useful, that shortens getPlayerSex :thumbup:
 
Back
Top