Mudanças entre as edições de "Alchemy"

De Game Shard
Ir para navegação Ir para pesquisar
 
(3 revisões intermediárias por 2 usuários não estão sendo mostradas)
Linha 3: Linha 3:
 
<br />
 
<br />
 
* Coloque os ingredientes necessários na mochila e utilize o Mortar para fazer as poções.<br />
 
* Coloque os ingredientes necessários na mochila e utilize o Mortar para fazer as poções.<br />
[[File:Alchemy_Menu.jpeg|600px]]
+
[[File:Alchemy_Menu.jpeg|600px]][[File:Alchemy_Menu2.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.
 
  
  
 +
===Potion Keg===
  
==Macro de Alchemy==
+
[[File:Alchemy_MenuK.png|450px]]
<pre>
+
* Um <b>keg potion</b> carrega 100 poções.
////
+
* Irá encher a quantidade de empty bottles que estiver na sua backpack.
// 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
 
</pre>
 

Edição atual tal como às 15h49min de 16 de março de 2022

Função: Necessária para fabricar poções e encher Kegs.
Praticar: É preciso utilizar um Mortar and Pestle. -> Mortar.png <-

  • Coloque os ingredientes necessários na mochila e utilize o Mortar para fazer as poções.

Alchemy Menu.jpeg450px


Potion Keg

Alchemy MenuK.png

  • Um keg potion carrega 100 poções.
  • Irá encher a quantidade de empty bottles que estiver na sua backpack.