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

Creativity - Post your mapping ideas

I wonder if it could be well scripted.

XML:
	<action actionid="3000" event="script" value="secretlever.lua"/>
Lua:
local config = {2552, 2548}

function onUse(cid, item, fromPosition, itemEx, toPosition)
    local leverState = -1
    local leverItem = getTileItemById(fromPosition, config[1])
    if leverItem.uid > 0 then
        doTransformItem(leverItem.uid, config[2])
        leverState = 1
    else
        leverItem = getTileItemById(fromPosition, config[2])
        if leverItem.uid > 0 then
            doTransformItem(leverItem.uid, config[1])
            leverState = 0
        else
            return false
        end
    end
    
    if leverState == 0 then
        doPlayerSay(cid, "Lever is up")
    elseif leverState == 1 then
        doPlayerSay(cid, "Lever is down")
    end

	return true
end

Feel free to create a thread with that whole idea :)
 
another one, like a bridge(exani hur up/down)

KH23zh.png
 
I feel rediculous right now - but somehow I'm not seeing a logical way of how to assemble/build the new grassy mountains. Aren't them supposed to be complete?
._.
Fingerfailure @ Skype - need sum feedback on new spr shit.
 
The new grass and crystal mountains use a different "border layout" than the old red and gray mountains.

You can download a tracked Gnomebase map and check how they work.
 
Ah you talkin about those gnome ones? They're fine for me, I ment the venore swamp ones (yeah it aint grass, more like mud, my bad)
 
Dont really like it and not sure if it was showed once, but here you go:



- - - Updated - - -

added ID: 8145 instead 8146:

 
Back
Top