• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Some doubts

Santi

Theres no way im stopping
Joined
Aug 29, 2010
Messages
1,975
Reaction score
152
Location
00
1- Is there a way to check monsters in an area, and if there are monsters then remove them all?

2-You guys know where can I found the tibia earth map?

Thanks in advanced
 
LUA:
local t = {}

for x = 100, 200 do
	for y = 100, 200 do
		local v = getTopCreature({x=x, y=y, z=7}).uid
		if isMonster(v) then
			table.insert(t, v)
		end
	end
end

for i = 1, #t do
	doRemoveCreature(t[i])
end
 
Gosh, I love ya <3 thanks bro.
No idea where to find tibia earth map?
Thanks again
You must spread some Reputation around before giving it to Cykotitan again.
 
Back
Top