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

[Request] Action Script..

Its just a move event...

Code:
function onStepIn(cid, item, position)
    local f1 = { x = 1, y = 1, z = 1 }
    local f2 = { x = 1, y = 1, z = 1 }
    if isPlayer(cid) == TRUE then
        doCreateItem(firefieldid, f1, 1)
        doCreateItem(firefieldid, f2, 1)
    end
    return TRUE
end
 
Back
Top