Tinkering - s0ckz/tfg GitHub Wiki
Funções
Macro para subir a Skill até 70.1 no UO Steam
Instruções do macro:
- Rode o macro em um local seguro com um baú no chão ou no banco;
- Tenha na mochila: iron ingots e tinker tools;
- Posição ideal como na imagem:

if not @findobject 'containertink'
headmsg 'Selecione um container'
promptalias 'containertink'
endif
if skill 'tinkering' < 30.6
usetype! '0x1ebc' '0' 'backpack'
@automenu! '' 'Parts' 'Parts' 'gears'
pause '3000'
while @findtype '0x1053' '0' 'backpack'
moveitem! 'found' 'containertink'
pause 400
endwhile
else
if skill 'tinkering' < 70.1
usetype! '0x1ebc' '0' 'backpack'
@automenu! '' 'Parts' 'Parts' 'clock parts'
pause '3000'
while @findtype '0x104f' '0' 'backpack'
moveitem! 'found' 'containertink'
pause 400
endwhile
else
headmsg 'Utilize Power Scrolls!'
stop
endif
endif