dalan valka
New Member
- Joined
- Dec 20, 2007
- Messages
- 18
- Reaction score
- 0
heres my script
heres my error

PHP:
function onUse(cid, item, frompos, item2, topos)
local wallpos1 = {x=869, y=263, z=8, stackpos=1} --- coordinates of the wall
to be removed ---
local wallpos2 = {x=870, y=263, z=8, stackpos=1}
local wall1 = getThingfromPos(wallpos1)
local wall2 = getThingfromPos(wallpos2)
local wallID = 9485 --- item id of the wall to be removed ---
if item.uid == 9485 and item.itemid == 1945 and wall1.itemid == 9485 and
wall2.itemid == 9485 then
doRemoveItem(wall1.uid, 1)
doRemoveItem(wall2.uid, 1)
doTransformItem(item.uid,1946)
doPlayerSendTextMessage(cid,22,"Something has moved not too far away.")
elseif item.uid == 9485 and item.itemid == 1946 and wall1.itemid == 0 and
wall2.itemid == 0 then
doCreateItem(wall1, 1, wallpos1)
doCreateItem(wall2, 1, wallpos2)
doTransformItem(item.uid,1945)
doPlayerSendTextMessage(cid,22,"Something has moved not too far away.")
end
end
heres my error
[29/05/2010 23:41:34] [Error - Action Interface]
[29/05/2010 23:41:34] data/actions/scripts/quests/unholywalls.luanUse
[29/05/2010 23:41:34] Description:
[29/05/2010 23:41:34] (luaDoCreateItem) Item not found
[29/05/2010 23:41:34] [Error - Action Interface]
[29/05/2010 23:41:34] data/actions/scripts/quests/unholywalls.luanUse
[29/05/2010 23:41:34] Description:
[29/05/2010 23:41:34] (luaDoCreateItem) Item not found