Page 1 of 1

Need a little help..

Posted: Mon Aug 23, 2004 11:25 am
by Neolesh
[Deleted old post, that part is working now]

New post..

What I need help with now is getting the game to check my buff status between 2 sub calls in main, and if a certain buff is not up, load it and cast it. I've been looking for a sub that has this but so far I haven't found one.

Posted: Mon Aug 23, 2004 2:04 pm
by Neolesh
Oddly enough I started it back up today and it's working... /boggle not sure what I was doing wrong..

Posted: Mon Aug 23, 2004 2:33 pm
by wassup
Neolesh wrote:Oddly enough I started it back up today and it's working... /boggle not sure what I was doing wrong..
I really doubt it is working with this in the macro:

Code: Select all

Sub Event_RageOn 
/echo At least I know it got this far! 
/if n $target(hp,pct)<15 /return 
/if n $target(hp,pct)==0 /return 
/if $target(id)==@MobID /sendkey up up 
/call ClearReturn 
/echo Rage On 
/attack off 
/call ClearReturn 

:waitRage 
/doevents 
/if $target(id)!=@MobID /return EndATK 
/if $return==EndATK /return EndATK 
/if $return==RageOFF /return 
/goto :waitRage 

/return

Posted: Mon Aug 23, 2004 2:53 pm
by Neolesh
Yeah, i changed that to..

Code: Select all

Sub Event_RageOn

/attack off
/delay 120

/return
Which still wasn't working at first. But then it was. Like I said I'm not sure what I was doing wrong. I'm sure it was something stupid since this is my first macro.