Friday, March 20, 2009

Auto-Cultivate

this is just an basic Cultivation Macro

first you need Marine Sphere card...

then config.txt

lockMap Blank
route_randomWalk 0
storageAuto 0

then items_control.txt

Mushroom Spore 30 1 0 1 1

====================================================================

automacro Cultivate {
  location prontera 192 100

  inventory "Mushroom Spore" >= 1
  sp > 90%
  status not Owg 50%
# weight < 50%
  timeout 3
  macro_delay 1.5
  exclusive 1

  run-once 1

  call {

  $Count = 0

  while ($Count <= 20) as exampleloop
  do sl Cultivation 191 100 1
  pause 1.5
  do ss "Magnum Break" 1
  $Count++
  end exampleloop

  do move 190 99

  $Count2 = 0

  while ($Count2 <= 13) as exampleloop2
  $Count2++
  do sm "Cart Revolution" 1 1
  pause 1.5
  end exampleloop2

  $Count3 = 0

  while ($Count3 <= 1) as exampleloop3
  $Count3++
  do ss "Magnum Break" 1
  pause 1.5
  end exampleloop3

  do move 192 100

  release Cultivate
  }
}

====================================================================

this is how its work...
this is my postion
WWWWWWW
WXXXXYXXX
WXXXXXXXX

here where i summon mushroom
WWWWWWW
WXXXMXXXX
WXXXXXXXX

when i cast Magnum Break on the mushroom it will push back to here...
WWWWWWW
WMXXXXXXX
WXXXXXXXX

then i move to here... then kill them with cart rev then magnum break...
WWWWWWW
WMXXXXXXX
WXYXXXXXX

W = Wall
M = Mushroom
Y = You


combo Cart Revolution and Magnum Break for lesser SP consumption...

Brewing Potions

For Alchemist Only and Using Priest or High Priest Support in the process

Note : dont forget to change your setting like this -> storageAuto 1 and lockMap (leave blank)

at config

getAuto Medicine Bowl {
minAmount 0
maxAmount 300
passive 0
}

getAuto Empty Bottle {
minAmount 0
maxAmount 300
passive 0
}

getAuto Immortal Heart {
minAmount 0
maxAmount 300
passive 0
}

at items_control


Alcohol Creation Guide 0 0 0 0 0
Bottle Grenade Creation Guide 0 0 0 0 0
Acid Bottle Creation Guide 0 0 0 0 0
Plant Bottle Creation Guide 0 0 0 0 0
Marine Sphere Creation Guide 0 0 0 0 0
Glistening Coat Creation Guide 0 0 0 0 0
Condensed Potion Creation Guide 0 0 0 0 0
Potion Creation Guide 0 0 0 0 0
Embryo Creation Guide 0 0 0 0 0
Elemental Potion Creation Guide 0 0 0 0 0

Empty Potion Bottle 0 1 0 0 0
Medicine Bowl 0 1 0 0 0
Empty Test Tube 0 1 0 0 0

Stem 0 1 0 0 0
Poison Spore 0 1 0 0 0
Empty Bottle 0 1 0 0 0

Alcohol 0 1 0 0 0
Fabric 0 1 0 0 0

Immortal Heart 0 1 0 0 0

Witch Starsand 0 1 0 0 0

White Potion 25 1 0 1 1
White Potion 0 1 0 0 0
Condensed White Potion 25 1 0 1 1
Condensed White Potion 0 1 0 0 0

##### 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

Here The Macro

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.5
  run-once 1

  call {
  do ss 228 10
  do send 8E 01 CA 03 00 00 00 00 00 00

  pause 0.5

  release potzMakerAlcohol
  }
}

automacro potzMakerFireBottle {
  sp > 50
  status Blessing
  status Gloria
  status not Owg 50%

  inventory "Bottle Grenade Creation Guide" > 0
  inventory "Medicine Bowl" > 0
  inventory "Empty Bottle" > 0
  inventory "Alcohol" > 0
  inventory "Fabric" > 0

  timeout 1.5
  run-once 1

  call {
  do ss 228 10
  do send 8E 01 DF 1B 00 00 00 00 00 00

  pause 0.5

  release potzMakerFireBottle
  }
}

automacro potzMakerAcidBottle {
  sp > 50
  status Blessing
  status Gloria
  status not Owg 50%

  inventory "Acid Bottle Creation Guide" > 0
  inventory "Medicine Bowl" > 0
  inventory "Empty Bottle" > 0
  inventory "Immortal Heart" > 0

  timeout 1.5
  run-once 1

  call {
  do ss 228 10
  do send 8E 01 E0 1B 00 00 00 00 00 00

  pause 0.5

  release potzMakerAcidBottle
  }
}