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

getCreatureConditions (rep++)

Code:
local conditions = {
	CONDITION_POISON, CONDITION_FIRE, CONDITION_ENERGY,
	CONDITION_PARALYZE, CONDITION_DRUNK, CONDITION_DROWN,
	CONDITION_FREEZING, CONDITION_DAZZLED, CONDITION_CURSED
}

function getCreatureConditions(cid)
	local ret = {}
	for i, v in ipairs(conditions) do
		if(hasCondition(cid, v)) then
			table.insert(ret, v)
		end
	end
	return ret
end
 
Back
Top