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

Inquistion Lever for 0.3.5! Rep+++!

gappe

New Member
Joined
Jul 17, 2009
Messages
71
Reaction score
0
Please can someone help me get a script that a stone removes if i put x item on tile and pull lever, after 3minutes the stone will come back! Please help me rep+++
 
Just rewrite that script with your position and your itemid and your stone position.


Code:
function onUse(cid, item, frompos, item2, topos)
 
	local switchUniqueID = 12613  -- uniqueID of switch
	local switchID = 1945
	local switch2ID = 1946
	local itemID = 5527
	local itempos = {x=1097, y=1216, z=12, stackpos=1} 
	local wallpos = {x=1098, y=1214, z=12, stackpos=1}
 
	local playername = getPlayerName(cid)
	local getitem = getThingfromPos(itempos)
	local wallchk = getThingfromPos(wallpos)
 
	if item.uid == switchUniqueID and item.itemid == switchID and getitem.itemid == itemID and wallchk.itemid == 1025 then
			doSendMagicEffect(itempos,10)
			doSendMagicEffect(wallchk,10)
			doRemoveItem(getitem.uid,1)
			doRemoveItem(wallchk.uid,1)
			doTransformItem(item.uid,item.itemid+1)
			addEvent(onTimer5, 2*60*1000)
	elseif item.uid == switchUniqueID and item.itemid == switch2ID then
			doTransformItem(item.uid,item.itemid-1)
	else
			doPlayerSendCancel(cid,"You need to place the corpse of the slain demon lord.")
end
	return 1
end


function onTimer5()

wallnewpos = {x=1098, y=1214, z=12} 
		doCreateItem(1025,1,wallnewpos)
end
 
Back
Top