Archery.mac

Macro depository for macros written before the user variable changes that broke all of them.

Moderator: MacroQuest Developers

jbrintnell
decaying skeleton
decaying skeleton
Posts: 3
Joined: Mon Aug 04, 2003 5:05 pm

Post by jbrintnell » Mon Aug 04, 2003 10:18 pm

I have been working on this also. I tried the doabilty ranged and says no such ability. I like the idea of remapping to the home key though. I'll try that and keep working on a fix.

PyroMan187
decaying skeleton
decaying skeleton
Posts: 1
Joined: Thu Aug 07, 2003 9:28 am

Post by PyroMan187 » Thu Aug 07, 2003 9:29 am

Do you all use this macro on regular servers and not an emulator? Dont want to get banned just for making a auto-archery sony should have made a long time ago.

dawnoffatex
a lesser mummy
a lesser mummy
Posts: 41
Joined: Sun Aug 10, 2003 8:24 pm

Post by dawnoffatex » Tue Aug 19, 2003 12:07 am

how would I make it so that this macro could be initilizard via a text command, like

"Here it comes" = triggers ranger to /macro archery ?

fryfrog
a hill giant
a hill giant
Posts: 271
Joined: Fri Jun 20, 2003 5:37 am

Post by fryfrog » Tue Aug 19, 2003 7:23 am

Make the macro into a loop, use an event to turn "on" and "off" the loop.

Something like the following, you would use it to wrap around your current macro.

Code: Select all

#Event Idle "You have gained experience."
#Event Fight "Fight this monster that I pulled, slut"

Sub Main
:IdleLoop

/if n $KeepIdling==0 /goto :FightLoop
/if n $KeepIdling==1 /goto :IdleLoop


:FightLoop

/if n $KeepIdling==0 /goto :FightLoop
/if n $KeepIdling==1 /goto :IdleLoop

/return

Sub Event_Idle
   /varset $KeepIdling 1
/return

Sub Event_Fight
   /varset $KeepIdling 0
/return

dawnoffatex
a lesser mummy
a lesser mummy
Posts: 41
Joined: Sun Aug 10, 2003 8:24 pm

Post by dawnoffatex » Tue Aug 19, 2003 10:10 am

awesome, thanks alot, using it now

dawnoffatex
a lesser mummy
a lesser mummy
Posts: 41
Joined: Sun Aug 10, 2003 8:24 pm

Post by dawnoffatex » Tue Aug 19, 2003 5:01 pm

ok i set this up earlier, using the even you defined on my inc message, and when I try to initilize the macro all i get is " The current macro has ended " , when I used "Incoming monster" (so i know its fool proof) as the event, same message, am i messing something up?

dawnoffatex
a lesser mummy
a lesser mummy
Posts: 41
Joined: Sun Aug 10, 2003 8:24 pm

Post by dawnoffatex » Thu Aug 21, 2003 6:01 pm

still havent figured this sucka out