Smelting Script

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
Fable
Posts: 1
Joined: 2005-02-05 11:46:54
Location: Australia

Smelting Script

Post by Fable »

well i dunno how to explain it but basically the shard i play u can smelt weapons and armour etc bak into ingots so i was wondering why my script that i made was working for all u have to do is
1) double click tongs
2) click item to smelt
3) click forge
my script looks like this

sub Smelt()
Start:

UO.UseType(0x0FBB)#Tongs
Wait(1000)
UO.WaitTargetType(0x1415)#Item to Smelt
Wait(1000)
UO.LClick(394,232)#Position of Forge
Wait(2000)

GOTO Start
end sub

as u can see very basic but it dont work well it proclaims things in the game such as no item found item must be in bakpak

so i dunno ... by the way i only speek and read ENGLISH so it would be help ful for those that reply to write in english
The Cheater
Posts: 86
Joined: 2005-02-08 15:39:19
Location: D.R.W.
Contact:

Re: Smelting Script

Post by The Cheater »

Fable wrote:well i dunno how to explain it but basically the shard i play u can smelt weapons and armour etc bak into ingots so i was wondering why my script that i made was working for all u have to do is
1) double click tongs
2) click item to smelt
3) click forge
my script looks like this

sub Smelt()
Start:

UO.UseType(0x0FBB)#Tongs
Wait(1000)
UO.WaitTargetType(0x1415)#Item to Smelt
Wait(1000)
UO.LClick(394,232)#Position of Forge
Wait(2000)

GOTO Start
end sub

as u can see very basic but it dont work well it proclaims things in the game such as no item found item must be in bakpak

so i dunno ... by the way i only speek and read ENGLISH so it would be help ful for those that reply to write in english

я те проще дам

Code: Select all

sub plavka()
while uo.count(0x1410)>0#tipe itema1
uo.usefromground(0x0FB1)
uo.waittargettype(0x1410)#tipe itema1
wait(200)
wend
while uo.count(0x1415)>0#tipe itema2
uo.usefromground(0x0FB1)
uo.waittargettype(0x1415)#tipe itema2
wait(200)
wend
while uo.count(0x1B72)>0#tipe itema3
uo.usefromground(0x0FB1)
uo.waittargettype(0x1B72)#tipe itema3
wait(200)
wend
while uo.count(0x1411)>0#tipe itema4
uo.usefromground(0x0FB1)
uo.waittargettype(0x1411)#tipe itema4
wait(200)
wend
while uo.count(0x1B76)>0#tipe itema5
uo.usefromground(0x0FB1)
uo.waittargettype(0x1B76)#tipe itema5
wait(200)
wend
while uo.count(0x1B7B)>0#tipe itema6
uo.usefromground(0x0FB1)
uo.waittargettype(0x1B7B)#tipe itema6
wait(200)
wend
end sub
Post Reply