Here's the macro I'm using (without specifying anything that doesn't matter funcionally).
Code: Select all
automacro Creating X Potion {
sp > 10%
status Blessing
status Gloria
location anywhere 100 100
inventory "X Potion Ingredient 1" > 0
inventory "X Potion Ingredient 2" > 0
inventory "X Potion Ingredient 3" > 0
inventory "X Potion Ingredient 4" > 0
timeout 1.5
run-once 1
call {
do ss 228 10
do send xx xx xx xx xx xx xx xx xx xx
pause 0.5
release PotionPlanta
}
}
These are the original lines:
Code: Select all
getAuto X Potion Ingredient 1 {
minAmount 0
maxAmount Any Number
passive 0
}
getAuto X Potion Ingredient 2 {
minAmount 0
maxAmount Any Number
passive 0
}
getAuto X Potion Ingredient 3 {
minAmount 0
maxAmount Any Number
passive 0
}
getAuto X Potion Ingredient 4 {
minAmount 0
maxAmount Any Number
passive 0
}
Code: Select all
getAuto Y Potion Ingredient 1 {
minAmount 0
maxAmount Any Number
passive 0
}
getAuto Y Potion Ingredient 2 {
minAmount 0
maxAmount Any Number
passive 0
}
getAuto Y Potion Ingredient 3 {
minAmount 0
maxAmount Any Number
passive 0
}
Code: Select all
automacro I can't make "X Potions" anymore, now I'll make "Y Potions"! {
storage "X Potion Ingredient 1" = 0
inventory "X Potion Ingredient 1" = 0
[...]
}
}
Thankyou in advance.