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

[Request] Pick a tile to make a hole

tarantonio

Old School Player
Joined
Jun 21, 2009
Messages
868
Solutions
1
Reaction score
286
Hi,
I'm trying to make a quest that involves to pick on a square on the map, then a hole should appear to go down, but the hole has to dissapear after a short time.

anyone can bring some help about this?
 
You know Fire Axe quest?

You mean a tile which is brown without stone piles and when u pick 2-3 time it open?

I mean the secret hole to get 4601 key on Rookgaard in Bear room Quest, I think it's similar to Fire Axe quest
 
Last edited:
Or you can do like this:
Code:
    if(itemEx.itemid == GROUNDID) then
        doTransformItem(itemEx.uid, HOLEID)
        doDecayItem(itemEx.uid)
        doSendMagicEffect(toPosition, CONST_ME_BLOCKHIT)
        return true
    end
 
Back
Top