what have i done wrong here?

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

KaKaMoNsTeR

what have i done wrong here?

Post by KaKaMoNsTeR » Thu Oct 30, 2003 10:56 pm

i want it to start backstabing and disarming when attack is on and pause when its off.


Sub Main
:Start
/if "$combat"=="TRUE"{
/doability "Backstab"
/doability "Disarm"
/goto :Start
/return

Plazmic
The One
The One
Posts: 800
Joined: Fri Jun 14, 2002 12:31 am
Contact:

Post by Plazmic » Thu Oct 30, 2003 11:05 pm

Code: Select all

Sub Main 
   :Start 
      /if "$combat"=="TRUE"{ 
         /doability "Backstab" 
         /doability "Disarm" 
      [color=green]}[/color]  <-- this?
   /goto :Start 
/return
- Plazmic

Guest

Post by Guest » Thu Oct 30, 2003 11:14 pm

doh thanks.