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

isUserOnChannel

chojrak

Banned User
Joined
Oct 25, 2008
Messages
5,832
Solutions
2
Reaction score
160
Function will check if player is connected to specified channel:

Code:
function isUserOnChannel(cid, channelId)
	return isInArray(getChannelUsers(channelId), cid)
end
 
isUserInChannel

Rox ^_^

Code:
function isUserInChannel(cid, channelId)
	return isInArray(getChannelUsers(channelId), cid)
end
 
Back
Top