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

[8.60] Tracked Tibia Map (RME 2.1)

every time i go to load it up in rme it says unsupported client version
 
OP upload need a premium account at speedyshare and Nottinghster upload seems to be corrupted, anyone else can upload this map?
 
Yeah, it's this one that seems to be corrupted, should the file have only 13,5 Mb?
 
Oh, it was my fault. The program I use doesn't decompress 7z file protected with passwords. For anyone with the same error on linux just install p7zip-full and it'll work.

- - - Updated - - -

Does anyone have a datapack compatible with this map? I tried lots of datapacks and there's still some monsters and npcs missing, tried looking for them one per one but still nothing.
If someone have a datapack compatible with this map could you share? If not but you have the following monsters:

Furious Troll,
Awareness of the Emperor,
Nokmir,
Frafnar,
Xorlosh,
Grombur,
Mechanical Fighter,
Target Dummy,
Ferus,
Poisonthrower,
Rebel,
Ezean,
Hot Dog,
Lizard Tunnel Guard,
Evil Sheep,
Vampire Pig,
Doom Deer,
Berserker Chicken,
Killer Rabbit,
Infernal Frog,
Curos,
Vad Inchi,
Lizard Noble,
Lizard Magistratus.

it would be a great help to share them or one of the following npcs:

Frok, the Guard,
Kihil, the Guard,
Emepror Rehal,
Harog,
Bolfona,
Drog,
Pyromental,
Zirkon.

Thanks in advance.

- - - Updated - - -

https://www.dropbox.com/s/ygrqcxezbm89thn/monster.tar.gz

Here's some of the monsters I couldn't find such as:

Lizard Noble,
Lizard Magistratus,
Hot Dog,
Berserker Chicken,
Doom Deer,
Target Dummy,
Killer Rabbit,
Vampire Pig,
Evil Sheep,
Mechanical Dog.

I found a script about the Emperor Rehal:

Code:
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
 
local t = {}
 
function onCreatureAppear(cid)				npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid)				npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg)			npcHandler:onCreatureSay(cid, type, msg) end
function onThink()						npcHandler:onThink() end
 
function creatureSayCallback(cid, type, msg)
	if not npcHandler:isFocused(cid) then
		return false
	elseif msgcontains(msg, 'mission') and getCreatureStorage(cid, 12256) == 1 then
		npcHandler:say('My son was captured by trolls? Doesn\'t sound like him, but if you say so. Now you want a reward, huh?...', cid)
		t[cid] = 1
	elseif t[cid] == 1 then
		if msgcontains(msg, 'yes') then
			doCreatureSetStorage(cid, 12256, 2)
			npcHandler:say('Look at these dwarven legs. They were forged years ago by a dwarf who was rather tall for our kind. I want you to have them. Thank you for rescuing my son ' .. getCreatureName(cid) .. '.', cid)
			doPlayerAddItem(cid, 2504, 1)
		else
			npcHandler:say('Bye.', cid)
		end
		t[cid] = nil
	end
 
	return true
end
 
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

It's a script of the dwarven legs quest.
 
Seriously?

rkr29u.png
 
You're using the wrong item files, which is why that happened. The map is fine with the correct item files.
 
can some please please reupload real map for 8.6 ? i dont even know where i should start ...

i will be really greatful !
 
Back
Top