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

Need script

And when you click again it goes back, or only that? You can just use doTransformItem(item.uid, 1484)

Ps: you can't rep yet with this amount of posts and join date.
 
Actions.xml
XML:
<action itemid="1484;1485" event="script" value="other/coalbasin.lua"/>

Coalbasin.lua
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    
	if item.itemid == 1485 then
		doTransformItem(item.uid, 1484)
	elseif item.itemid == 1484 then
		doTransformItem(item.uid, 1485)
	end
return TRUE
end
 
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
return doTransformItem(item.uid, item.itemid == 1485 and 1484 or 1485)
end
 
Back
Top