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

Dreamer's Challenge quests

kito2

www.masteria.net
Joined
Mar 9, 2009
Messages
3,766
Solutions
1
Reaction score
225
Location
Chile, Santiago
Hi there, I have been searching this script for so long and couldn't find anything... So I decided to posts the idea here and lets build it...

Dreamer's Challenge Quest/Spoiler - TibiaWiki - Quests, Items, Spells, and more

Im searching the map right now, and already made the carrot script, couldn't track it, because map trackers for 8.54+ are bugged.


1) If you pass withut a carrot, it will damage you 150.
Dreamer_Hugo_Free.jpg

Lua:
function onStepIn(cid, item, pos)
	if isPlayer(cid) and getPlayerItemCount(cid, 2684) == 0 then
			doPlayerRemoveItem(cid, 2684, 1)
			doTargetCombatHealth(0, cid, COMBAT_PHYSICALDAMAGE, -150, -150, CONST_ME_NONE)
	end
	return true
end

2) Fire Bug script...
 
Sorry, I dont get it. Shall I replace this:
Code:
function onStepOut(cid, item, pos)
    pos.stackpos = 1
    local getPos = getThingfromPos(pos)
    teleportPosition.stackpos = 1
    local getTeleport = getThingfromPos(teleportPosition)
    if comparePos(pos, teleportPosition) and getPos.itemid == getTeleport.itemid and getPos.actionid == getTeleport.actionid then
        teleportPosition.stackpos = 1
        doRemoveItem(getTeleport.uid, 1)
        resetPuzzle()
        return 1
    else
        doTransformItem(item.uid, ground.normal)
        return 1
    end
end

with that you said?

I might be dumb but..:p
 
Can you reupload the lastest packet with quest please ?

And your idea is good we need do that too with Elemental Spheres Quest ...

A team to work and finish the quest ...
 
Back
Top