• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Yalahari 10 mission. Actions, Movements, Creaturescripts,Monsters&NPC. Many Scripts.

Thank you quas, actually i'm using it. I was about to code myself but then i seen your script, i scripted every 9 mission and was about to script 10th when i seen this here, this saved my time, thanks.
__________________
klekSu.png

You are welcome on kleksoria.com!
Please visit new open tibia forum with it's own ots list. otservers.net!
 
Last edited:
Looks nice :) The only comment from my side is that you can tab it better, looks nicer and it's easier to find bugs. Keep going :)!
 
it seems compatible with 0.2
 
Death.lua, to remove monsters...
where can i find it?(this script)

[23/10/2009 21:22:34] Lua Script Error: [Action Interface]
[23/10/2009 21:22:34] data/actions/scripts/quests/azerus.lua:eek:nUse

[23/10/2009 21:22:34] data/actions/scripts/quests/azerus.lua:37: attempt to call global 'isMonster' (a nil value)
[23/10/2009 21:22:34] stack traceback:
[23/10/2009 21:22:34] data/actions/scripts/quests/azerus.lua:37: in function 'getMonstersfromArea'
[23/10/2009 21:22:34] data/actions/scripts/quests/azerus.lua:61: in function <data/actions/scripts/quests/azerus.lua:50>
 
Last edited:
Does this work with 0.3.5?


No i tested it now...



I Getting Error

Lua:
[31/10/2009 02:01:42] Lua Script Error: [Action Interface] 
[31/10/2009 02:01:42] data/actions/scripts/quests/azerus.lua:onUse

[31/10/2009 02:01:42] luaGetThingFromPos(). Tile not found

[31/10/2009 02:01:42] Lua Script Error: [Action Interface] 
[31/10/2009 02:01:42] data/actions/scripts/quests/azerus.lua:onUse

[31/10/2009 02:01:42] luaGetThingFromPos(). Tile not found
 
@up that seems to be a 0.2 distro so the yalahari mission script isn't compatible
 
@Up
Lol...

If you are so sure, just see Furious - Latest News :)
I have only this script there, and it's working in 100% without any modifications, just use your brain -.-

Code:
 [31/10/2009 02:01:42] Lua Script Error: [Action Interface]
[31/10/2009 02:01:42] data/actions/scripts/quests/azerus.lua:onUse

[31/10/2009 02:01:42] luaGetThingFromPos(). Tile not found

[31/10/2009 02:01:42] Lua Script Error: [Action Interface]
[31/10/2009 02:01:42] data/actions/scripts/quests/azerus.lua:onUse

[31/10/2009 02:01:42] luaGetThingFromPos(). Tile not found

In 100% you've done something wrong, probably you set wrong coordinates...
 
Sorry, it did not understand part of it creaturescripts, you have to configure it to position. Could you help me in this part?

Thanks!
 
PHP:
local config = {
	message = "Azerus ran into teleporter! It will disappear in 2 minutes. Enter It!",
	teleportId = 1387,
	bosses = { -- Monster Name, Teleport To Position, Teleport Position
		["Azerus"] = { { x = 2881, y = 2179, z = 9 }, { x = 2881, y = 2175, z = 10 }},



			}
}


function onDeath(cid, corpse, killer)
	local position = getCreaturePosition(cid)
	for name, pos in pairs(config.bosses) do
		if name == getCreatureName(cid) then

		doCreateTeleport(config.teleportId, pos[1], pos[2])
		doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1)
		end
	end
	return TRUE
end

Configuration:
{ x = 2881, y = 2179, z = 9 } change To:

311kjs9.jpg


and { x = 2881, y = 2175, z = 10 } to:

34gk57a.jpg
 
Back
Top