Tinkering - s0ckz/tfg GitHub Wiki

Funções

  • Esta Skill é necessária para fabricar anéis, colares, braceletes e diversos itens;
  • É preciso utilizar tinker tools;
  • Confira no site a Tabela Tinkering;
  • Tinkering é uma Worker Skill, ou seja, sobe até 70.1 com macro, até 95.1 com Power Scrolls e até 100.1 com Recipe Scrolls.

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:

inscript

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