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

auto close door within 2 minutes?

Adje

Banned User
Joined
Mar 9, 2008
Messages
28
Reaction score
0
Code:
function onDeath(cid, corpse, killer)
    local key = 2089 -- key number
    local creaturename = getCreatureName(cid)
    if creaturename == 'demon' then -- <span class="highlight">monster</span> name
        local key = doAddContainerItem(corpse, key, 1)
        doSetItemActionId(key, 6000) -- action ID, same as door action ID
 
    end
end

how can i make the door close in xx time with the same action id?
 
Back
Top