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

Solved Script error

PHP:
local wallpos = {x=784,y=1007,z=7}
local wallid = 1304

function createWall()
	doCreateItem(wallid, wallpos)
end
function onUse(cid, item, fromPosition, itemEx, toPosition) 

if item.uid == 6754 then 
	if item.itemid == 1945 then
		addEvent(createWall, 3000)
		doTransformItem(item.uid, 1946)
	elseif item.itemid == 1946 then
		doTransformItem(item.uid, 1945)
	end
end
	return TRUE
end

It creates the stone on the pos after 3 sec.
 
Back
Top