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

Inq quest help with scripts to tps!

Kjosen

New Member
Joined
Sep 1, 2008
Messages
94
Reaction score
0
Hello, i'w been trying lots of diffetent things but i dont know if its my server version or what. this is one of the scripts iw been trying with, Im using TFS 0.3.6

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

i would be pleased if some one could help me!
 
Back
Top