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

[LUA] GetCID(guid)

knightxd

Member
Joined
Feb 21, 2009
Messages
211
Reaction score
16
Location
Rio de Janeiro
Lua:
function GetCID(guid)
for i, cid in ipairs(getPlayersOnline()) do
if getPlayerGUID(cid) == guid then
	return cid
end	
end
return false
end

if player with that guid is online returns cid.. else returns false..

if you can't find a use for it, just dont get..
 
Back
Top