Code: Select all
sub Spools()
UO.findtype("Flax Bundle", -1, 0x4006fe59)
uo.grab(30,"finditem")
end sub
Any suggestions?
P.S. You can write answer also in Russian, i understand that language.
Moderators: Murderator+, Murderator
Code: Select all
sub Spools()
UO.findtype("Flax Bundle", -1, 0x4006fe59)
uo.grab(30,"finditem")
end sub
Code: Select all
sub Loot()
var i,n
Dim A[46]
A[1] = 0x0EED ;Gold
A[2] = 0x0F16 ;Amethis
A[3] = 0x0F15 ;citri
A[4] = 0x0F10 ;esmeralda
A[5] = 0x0F21 ;saphiro
A[6] = 0x0f86 ;MandrakeRoot
A[7] = 0x0F13 ;rubi
A[8] = 0x1ce1 ;haed
A[9] = 0x1f14 ;Runa
A[10] = 0x204e ;RobeOfDarkMage
A[11] = 0x0f51 ;Dagger
A[12] = 0x0f7a ;BlackPearl
A[13] = 0x1404 ;WarFork
A[14] = 0x0f84 ;Garlic
A[15] = 0x0f85 ;Ginseng
A[16] = 0x1B76 ;Heater
A[17] = 0x1411 ;PlatemailLegs
A[18] = 0x1415 ;Platemail
A[19] = 0x1410 ;PlatemailArms
A[20] = 0x1414 ;PlatemailGauntlets
A[21] = 0x1412 ;PlatemailHelm
A[22] = 0x1413 ;PlatemailHelm
A[23] = 0x1F40 ;Poison
A[24] = 0x1F4A ;Light
A[25] = 0x0f0c ;Heal
A[26] = 0x0f88 ;Nightshade
A[27] = 0x0E76 ;Bag
A[28] = 0x09B0 ;BeltPouch
A[29] = 0x0E75 ;Backpack
A[30] = 0x0E21 ;bandage
A[31] = 0x1F5F ;FS
A[32] = 0x1F49 ;GH
A[33] = 0x1F4C ;Recall
A[34] = 0x0f8c ;SulphorousAsh
A[35] = 0x0f8d ;SpidersSilk
A[36] = 0x0f7b ;BloodMoss
A[37] = 0x0F7E ;gema
A[38] = 0x1086 ;Bracelet
A[39] = 0x0F2D ;gema
A[40] = 0x0F25 ;gema
A[41] = 0x0F26 ;gema
A[42] = 0x0F3F ;Arrow
A[43] = 0x1F09 ;Ring
A[44] = 0x1EA7 ;arcanegem
A[45] = 0x0F0D ;explo
A[46] = 0x0F19 ;saphire
i = 678
if uo.GetDistance("lastcontainer") < 5 then
FOR n=1 TO 46
uo.findtype(A[n],"-1","lastcontainer")
if uo.findcount() > 0 then
UO.grab(1, "finditem")
Wait(i)
END if
next
else
uo.print("acercate viteh!!")
end if
end sub
Code: Select all
if uo.findcount() > 0 then
UO.grab(1, "finditem")
Wait(i)
END if
Code: Select all
while uo.findcount() > 0
UO.grab("0", "finditem")
Wait(i)
uo.findtype(A[n],"-1","lastcontainer")
wend
Code: Select all
sub Spools()
uo.exec('addobject Flax')
while uo.targeting()
wait(100)
wend
UO.findtype("Flax", -1, 'lastcontainer')
uo.grab("30",'finditem')
end sub