PDA

View Full Version : Drop Scarab Coin on TP



skit69
08-06-2016, 12:20 PM
Hello, I need script to put SC on TP in Ank Tombs, Can somebody help me?

Zingron
08-06-2016, 04:41 PM
function ThrowScarabCoin(x, y, z)
local bp1 = Container.GetFirst()
for spot, item in bp1:iItems() do
if item.id == 3042 then
bp1:MoveItemToGround(spot, x, y, z, 1)
end
end
end




elseif (labelName == 'ScarabTp') then
wait(1200,2000)
ThrowScarabCoin(32346, 32221, 5)
wait(500,1200)




Where it says ThrowScarabCoin(32346, 32221, 5), change the numbers in the (brackets) to the x,y,z position where you want to throw the scarab coin.