I would like to make a script that equips the armour, because on the shard I play you can't use the ,dress ... :(
the pb is that I don't know how to use the ,equip (uo.equip) command...
could someone help me, pls?
Tnx.
Help with equiping...
Moderators: Murderator+, Murderator
Make something like this:
sub EquipArmor()
UO.EquipT('Torso','0x1415')
wait(350)
UO.EquipT('Legs','0x1411')
wait(350)
UO.EquipT('Arms','0x1410')
wait(350)
UO.EquipT('Neck','0x1413')
wait(350)
UO.EquipT('Gloves','0x1414')
wait(350)
UO.EquipT('Hat','0x1412')
wait(350)
UO.EquipT('Brace','0x1086')
;wait(350)
;UO.EquipT('Lhand','0x1b76')
;wait(350)
;UO.EquipT('Rhand','0x13b9')
end sub
sub EquipArmor()
UO.EquipT('Torso','0x1415')
wait(350)
UO.EquipT('Legs','0x1411')
wait(350)
UO.EquipT('Arms','0x1410')
wait(350)
UO.EquipT('Neck','0x1413')
wait(350)
UO.EquipT('Gloves','0x1414')
wait(350)
UO.EquipT('Hat','0x1412')
wait(350)
UO.EquipT('Brace','0x1086')
;wait(350)
;UO.EquipT('Lhand','0x1b76')
;wait(350)
;UO.EquipT('Rhand','0x13b9')
end sub
Tnx!
you forgot a wait at the end..
you forgot a wait at the end..

Code: Select all
sub EquipArmor()
UO.EquipT('Torso','0x1415')
wait(800)
UO.EquipT('Legs','0x1411')
wait(800)
UO.EquipT('Arms','0x1410')
wait(800)
UO.EquipT('Neck','0x1413')
wait(800)
UO.EquipT('Gloves','0x1414')
wait(800)
UO.EquipT('Hat','0x1412')
wait(800)
UO.EquipT('Brace','0x1086')
wait(800)
UO.EquipT('Lhand','0x0501')
wait(800)
UO.EquipT('Rhand','0x13b9')
wait(800)
end sub