Mudanças entre as edições de "Alchemy"
Ir para navegação
Ir para pesquisar
Linha 10: | Linha 10: | ||
[[File:Alchemy_MenuK.png|450px]] | [[File:Alchemy_MenuK.png|450px]] | ||
− | * Um <b>keg potion</b> carrega 100 poções. Irá encher a quantidade de empty bottles que estiver na sua backpack. | + | * Um <b>keg potion</b> carrega 100 poções. |
+ | * Irá encher a quantidade de empty bottles que estiver na sua backpack. | ||
+ | |||
+ | ** Precisará buscar no meu de Carpentry e Tinkering por partes do potion keg vazio. | ||
==Macro de Alchemy== | ==Macro de Alchemy== |
Edição das 09h56min de 26 de junho de 2020
Função: Necessária para fabricar poções e encher Kegs.
Praticar: É preciso utilizar um Mortar and Pestle. -> <-
- Coloque os ingredientes necessários na mochila e utilize o Mortar para fazer as poções.
Potion Keg
- Um keg potion carrega 100 poções.
- Irá encher a quantidade de empty bottles que estiver na sua backpack.
- Precisará buscar no meu de Carpentry e Tinkering por partes do potion keg vazio.
Macro de Alchemy
//// // Macro de Alchemy // Faz Lesser Poison // Ter um bau perto (ou banco) com Nightshade (reag) e Empty Bottle // Ter um Mortar and Pestle na backpack //// if not @findobject 'Baualchemy' headmsg 'Selecione o bau com os Reags e Bottle.' promptalias 'Baualchemy' useobject 'Baualchemy' else useobject 'Baualchemy' endif // Se acabar a NightShade if @counttype 0xf88 0 'backpack' == 0 headmsg 'Restockando NightShade' movetype 0xf88 'Baualchemy' 'Backpack' (0 0 0) 0 500 4 pause 1000 endif // Se acabar a Empty Bottle if @counttype 0xf0e 0 'backpack' == 0 headmsg 'Restockando Empty Bottle' movetype 0xf0e 'Baualchemy' 'Backpack' (0 0 0) 0 500 4 pause 1000 endif // Se tiver mais que 200 Lesser Poison if @counttype 0xf0e 68 'backpack' >= 200 useobject 'Baualchemy' headmsg 'Guardando Lesser Poison' @movetypeoffset 0x1bd7 'backpack' 'Baualchemy' (0 0 0) 68 pause 1000 endif // Fazer 1 Lesser Poison if @gumpexists 0x483 @replygump 0x483 0 elseif @gumpexists 0x484 @replygump 0x484 0 elseif @gumpexists 0x485 @replygump 0x485 0 endif usetype 0xe9b 'backpack' waitforgump 'any' 15000 //Gump 1 if @gumpexists 0x483 @replygump 0x483 6 waitforgump 0x483 15000 @replygump 0x483 10101 waitforgump 0x483 15000 //Gump 2 elseif @gumpexists 0x484 @replygump 0x484 6 waitforgump 0x484 15000 @replygump 0x484 10101 waitforgump 0x484 15000 //Gump 3 elseif @gumpexists 0x485 @replygump 0x485 6 waitforgump 0x485 15000 @replygump 0x485 10101 waitforgump 0x485 15000 endif