Alchemist Brewing Issues

For everything NOT server specific support. Do NOT ask for connectivity help here!.

Moderator: Moderators

Message
Author
TheBob
Noob
Noob
Posts: 1
Joined: 05 Apr 2020, 12:43
Noob?: No

Alchemist Brewing Issues

#1 Post by TheBob »

Hello,

When trying to create potions, I'm having issues where it creates the first potion, but not subsequent ones. I've tried playing with timeouts (both within the macro and within my timeouts.txt) to see if that's the case. Wondering if I could get some assistance here.

I've tried finding the best place to capture those hex values to verify they're correct. Elsewise, I'm kind of at a loss. Not much turning up for me at the moment (perhaps I'm using the wrong search terms?).

- OUTPUT -

Code: Select all

automacro potzMakerAlcohol triggered.
You are casting Prepare Potion on yourself (Delay: 0ms)
Inventory Item Removed: Medicine Bowl (12) x 1
------------------------------ Create Item List
-------------------------------
  0 Alcohol
(970    )
  1 Condensed Red Potion
(545    )
  2 Condensed Yellow Potion
(546    )
  3 Condensed White Potion
(547    )
-----------------------------------------------------------
--------------------
You can now use the 'create' command.
You use Prepare Potion on yourself (Lv: 10)
[macro] automacro potzMakerAlcohol triggered.
Inventory Item Removed: Stem (14) x 5
Inventory Item Removed: Empty Bottle (13) x 1
Inventory Item Removed: Poison Spore (15) x 5
Inventory Item Removed: Empty Test Tube (16) x 1
Item added to inventory: Alcohol (17) x 1 - Event
You successfully made a potion (ID 970)!
You successfully created a potion!
You are again: Blessing (Duration: 240s)
[macro] automacro potzMakerAlcohol triggered.
Unable to cast skill Prepare Potion in 3 tries.
[macro] automacro potzMakerAlcohol triggered.
Unable to cast skill Prepare Potion in 3 tries.
[macro] automacro potzMakerAlcohol triggered.
Unable to cast skill Prepare Potion in 3 tries.
[macro] automacro potzMakerAlcohol triggered.
Unable to cast skill Prepare Potion in 3 tries.
[macro] automacro potzMakerAlcohol triggered.
Below is the macro:

Code: Select all

##### Alchemist Brewing #####
# Red Potion = 8E 01 F5 01 00 00 00 00 00 00
# Yellow Potion = 8E 01 F7 01 00 00 00 00 00 00
# White Potion = 8E 01 F8 01 00 00 00 00 00 00
# Blue Potion = 8E 01 F9 01 00 00 00 00 00 00
# Adonyne = 8E 01 5D 02 00 00 00 00 00 00
# Aloevera = 8E 01 5E 02 00 00 00 00 00 00
# Red Slim = 8E 01 21 02 00 00 00 00 00 00
# Yellow Slim = 8E 01 22 02 00 00 00 00 00 00
# White Slim = 8E 01 23 02 00 00 00 00 00 00
# Alcohol = 8E 01 CA 03 00 00 00 00 00 00
# Fire Bottle = 8E 01 DF 1B 00 00 00 00 00 00
# Acid Bottle = 8E 01 E0 1B 00 00 00 00 00 00
# Plant Bottle = 8E 01 E1 1B 00 00 00 00 00 00
# Mine Bottle = 8E 01 E2 1B 00 00 00 00 00 00
# Coating Wax = 8E 01 E3 1B 00 00 00 00 00 00

automacro potzMakerAlcohol {
   sp > 50
   status Blessing
   status Gloria
   status not Owg 50%
   inventory "Alcohol Creation Guide" > 0
   inventory "Medicine Bowl" > 0
   inventory "Empty Bottle" > 0
   inventory "Stem" > 4
   inventory "Empty Test Tube" > 0
   inventory "Poison Spore" > 4
   timeout 1.0
   run-once 1

   call {
      do ss 228 10
      pause 0.5
      do send 8E 01 CA 03 00 00 00 00 00 00
      pause 0.5
      release potzMakerAlcohol
   }
}

Thanks!