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

function isUnderWater(cid)

LucasFerraz

Systems Analyst
Joined
Jun 10, 2010
Messages
2,858
Reaction score
96
Location
Brazil
Rep++ to Jetro.
Tested in rev3777.
Lua:
local floors = {5405, 5406, 5407, 5408, 5409, 5410, 5743, 5744, 5764, 9671, 9672, 9673}

function isUnderWater(cid)
	return isCreature(cid) and isInArray(floors, getTileInfo(getThingPos(cid)).itemid)
end
 
Back
Top