Tailoring - s0ckz/tfg GitHub Wiki

Funções

  • Esta Skill é necessária principalmente para fabricar roupas mágicas;
  • É preciso utilizar Sewing Kit;
  • Confira no site a Tabela Tailoring;
  • Tailoring é uma Worker Skill, ou seja, sobe até 70.1 com macro, até 95.1 com Power Scrolls e até 100.1 com Recipe Scrolls.
  • Para fazer panos em grande quantidade, compre sementes de algodão no NPC Farmer, vá em um lugar fora da proteção ou em casa, jogue as sementes no chão e clique 2x nelas.
  • 1 semente = 30 cottons = 180 spools = 45 bolts = 2.250 panos

Macro para subir a Skill até 70.1 no UO Steam

Macro para fazer pano a partir de algodão:

  • Esteja perto de um Wheel, um Loom e um container no chão para colocar os rolos;
  • Comece com o algodão na mochila;
  • Quando os rolos estiverem prontos, basta utilizar o Sewing Kit para transformá-los em pano.
if not @findobject 'containertailor'
  headmsg 'Selecione um container'
  promptalias 'containertailor'
endif
if not @findobject 'wheel'
  headmsg 'Selecione um wheel'
  promptalias 'wheel'
endif
if not @findobject 'loom'
  headmsg 'Selecione um loom'
  promptalias 'loom'
endif
usetype '0xdf9' //algodao
waitfortarget 15000
target! 'wheel' //wheel
pause 2000
while @findtype '0xfa0' '0' 'backpack' //spools
  usetype! '0xfa0' '0' 'backpack'
  waitfortarget 15000
  target! 'loom' //loom
  pause 1000
endwhile
pause 1000
while @findtype '0xf95' '0' 'backpack' //bolt
  moveitem! 'found' 'containertailor'
  pause 400
endwhile
pause 1000

Macro para subir a skill fazendo cloth box:

if not @findobject 'containertailor'
  headmsg 'Selecione um container'
  promptalias 'containertailor'
endif
if skill 'tailoring' < 70.1
    usetype! '0xf9d' '0' 'backpack'  //Sewing Kit
    waitfortarget 15000
    targettype! '0x175d'
    @automenu! '' 'Cloth Box'
    pause 6000
  while @findtype '0x1422' '65' 'backpack'
    moveitem! 'found' 'containertailor'
    pause 400
  endwhile
else
  headmsg 'Utilize Power Scrolls!'
  stop
endif