BBot - The best bot of the world

Full Version: Need Macro!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, i need macro for change Royal Axe to Fire Axe with Ghost and take Royal Axe back if kill Ghost.

Quote:1000
{Ghost}
Creatures.ByName(Ghost)==1 [jump]
Self.Equip.LeftHand(3320)
Exit()
Creatures.ByName(Ghost)==0
{jump}
Self.Equip.LeftHand(7434)
Exit()

not work :/ HELP ME!
(08-01-2014, 09:03 PM)Draxter Wrote: [ -> ]Hello, i need macro for change Royal Axe to Fire Axe with Ghost and take Royal Axe back if kill Ghost.

Quote:1000
{Ghost}
Creatures.ByName(Ghost)==1 [jump]
Self.Equip.LeftHand(3320)
Exit()
Creatures.ByName(Ghost)==0
{jump}
Self.Equip.LeftHand(7434)
Exit()

not work :/ HELP ME!


u will need add macro on killer :

MACRO EQUIP FIRE AXE :
Code:
0 {EQUIP FIRE AXE} Self.Equip.LeftHand(3320) Exit()

MACRO EQUIP ROYAL AXE :
Code:
0 {EQUIP ROYAL AXE} Self.Equip.LeftHand(7434) Exit()

ADD macro equip fire axe : On attack
and after attack : equip royal axe macro

[Image: MjEsPL.png]




+REP
(08-22-2014, 08:32 PM)finha182 Wrote: [ -> ]
(08-01-2014, 09:03 PM)Draxter Wrote: [ -> ]Hello, i need macro for change Royal Axe to Fire Axe with Ghost and take Royal Axe back if kill Ghost.

Quote:1000
{Ghost}
Creatures.ByName(Ghost)==1 [jump]
Self.Equip.LeftHand(3320)
Exit()
Creatures.ByName(Ghost)==0
{jump}
Self.Equip.LeftHand(7434)
Exit()

not work :/ HELP ME!


u will need add macro on killer :

MACRO EQUIP FIRE AXE :
Code:
0 {EQUIP FIRE AXE} Self.Equip.LeftHand(3320) Exit()

MACRO EQUIP ROYAL AXE :
Code:
0 {EQUIP ROYAL AXE} Self.Equip.LeftHand(7434) Exit()

ADD macro equip fire axe : On attack
and after attack : equip royal axe macro

[Image: MjEsPL.png]




+REP

Nice, this is a cool way to do that!