clagio wrote:
sub example()
uo.findtype("0x0AAA")
uo.drop("1",STR(x),STR(y + 1),str(1),"finditem")
uo.drop("1",STR(x),STR(y - 1),str(1),"finditem")
end sub
if i run this example's script, i can put the first item on the ground, but when i try to the second drop injection say me "Can't pickup item".
I have 2 message, one from the server "you must wait before.." and one message from inject "Can't pickup item".
But if i try by hand to drag 2 item on the ground, i have no delay..
sub example()
uo.findtype("0x0AAA")
uo.drop("1",STR(x),STR(y + 1),str(1),"finditem")
wait(500)
; 500 is 0.5 sec. Can you sensate it?
uo.findtype("0x0AAA" )
; you need in new search before second using. 'finditem' from first search is the serial of stack of objects. Serial stack will change if you move one object from stack.
uo.drop("1",STR(x),STR(y - 1),str(1),"finditem")
wait(500)
end sub