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

draw well

Triggah

TrigCore
Joined
Aug 1, 2007
Messages
436
Reaction score
2
why doesnt this work for 0.3.6pl1 anymore?

Lua:
 local drawWellAid = 1000
function onUse(cid, item, fromPosition, itemEx, toPosition)
        if item.itemid == 1369 and item.actionid == drawWellAid then
		doTeleportThing(cid, {x = toPosition.x, y = toPosition.y, z = toPosition.z + 1}, TRUE)
        elseif item.itemid == 1369 then
                doPlayerSendCancel(cid, "You can not use this object.")
        end
    end
 
Back
Top