I am a newbie, need help on simple macro [Request Fulfilled]

Macro requests from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

BigBuddha
decaying skeleton
decaying skeleton
Posts: 2
Joined: Mon Sep 09, 2002 4:27 pm

I am a newbie, need help on simple macro [Request Fulfilled]

Post by BigBuddha » Mon Sep 09, 2002 4:33 pm

I just want to make a simple macro to automatically click on my instaclick Circlet of Shadows for my necro. I know I need to make it so if it sees the messages:
"You feel yourself starting to appear "
"Your shadows fade ".
I then know I just need it to /press 5 (where my circlet hotbutton is) but I am dumb and can't figure this out.
Thank you advance
"I have a body of a god...unfortunately its Buddha."

cyberglitch
a lesser mummy
a lesser mummy
Posts: 42
Joined: Wed Jun 26, 2002 4:40 pm

Post by cyberglitch » Mon Sep 09, 2002 4:47 pm

Will keep checking events till the cast event is triggered by the line "You feel yourself starting to appear" then is will call Sub_Event Cast that will press 5 and start over again.

[[Edited by Plazic: Sub Event_Chat instead of Sub_Event Chat]]

Code: Select all

#event cast "You feel yourself starting to appear"

Sub Main
:loop
/doevents
/goto :loop
/return

Sub Event_Cast
/press 5
/return

BigBuddha
decaying skeleton
decaying skeleton
Posts: 2
Joined: Mon Sep 09, 2002 4:27 pm

Post by BigBuddha » Mon Sep 09, 2002 6:15 pm

Thanks!!!!!!!!!!!
"I have a body of a god...unfortunately its Buddha."