Drawing a blank

Need some help with that macro you're working on or aren't quite sure how to get your macro to do something? Ask here!

Moderator: MacroQuest Developers

illus1on
orc pawn
orc pawn
Posts: 24
Joined: Wed Apr 14, 2004 3:32 pm

Drawing a blank

Post by illus1on » Thu Apr 22, 2004 12:16 am

Regarding this macro that I have used for a couple months...

Code: Select all

#turbo 

Sub Main 

   /echo Autofire ON 
   :Loop 
      /if $target(type)==NPC { 
         /if $char(casting)==FALSE { 
            /press Num_0 
            /delay 1 
         } 
         /goto :Loop 
      } else { 
         /echo No NPC targeted 
      } 
      /echo Autofire OFF 
/return
What shall I do to get it working again?

- And if anyone is feeling up to it and has the spare time... What do i add in to make a /follow in there to follow say... the group Cleric if the group moves around.

Lax
We're not worthy!
We're not worthy!
Posts: 3524
Joined: Thu Oct 17, 2002 1:01 pm
Location: ISBoxer
Contact:

Post by Lax » Thu Apr 22, 2004 12:20 am

time to start keeping up with the times! live in the now! ;)

Code: Select all

#turbo

Sub Main

   /echo Autofire ON
   :Loop
      /if (${Target.Type.Equal[NPC]}) {
         /if (${Me.Casting.ID}==0) {
            /keypress Num_0
            /delay 1
         }
         /goto :Loop
      } else {
         /echo No NPC targeted
      }
      /echo Autofire OFF
/return 
Lax Lacks
Master of MQ2 Disaster
Purveyor of premium, EULA-safe MMORPG Multiboxing Software
* Multiboxing with ISBoxer: Quick Start Video
* EQPlayNice, WinEQ 2.0

illus1on
orc pawn
orc pawn
Posts: 24
Joined: Wed Apr 14, 2004 3:32 pm

Post by illus1on » Thu Apr 22, 2004 12:23 am

Yes, Im your friendly neighborhood code illiterate man :)



Thank you Lax.