BBot - The best bot of the world
Need Macro! - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html)
+--- Forum: Requests (https://forums.bmega.net/forum-17.html)
+--- Thread: Need Macro! (/thread-15718.html)



Need Macro! - Draxter - 08-01-2014

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!


RE: Need Macro! - finha182 - 08-22-2014

(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


RE: Need Macro! - MegaNo0body - 08-23-2014

(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!