• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Clicky sub (1 Viewer)

rawwar

New member
Joined
Jun 7, 2005
RedCents
20¢
I would like to add a line of code to my vxed mac that uses the clicky I have in my range slot whenever my Ten or hp buff goes away anyone able to help me just need a quick sub.... was thinking using the #event such and such has worn off to trigger it...

would also like to do it to trigger a potion in slot 3 when hps buff runs out and probably could tie the 2 together in the same sub
 
Last edited:
Sample from pally:

Rich (BB code):
|***************************************|
|            Check Self Buff            |
|                                       |
|***************************************|

Sub CheckBuffs
  /call ChatMsg  "Checking self buffs..."
  /if (${Me.Buff[Form of Endurance II].ID} > 0) {
    /if (${Me.Buff[Form of Endurance II].Duration} < 60) {
      /call cast "Veil of the Inferno" item
      /delay 1s
    }
  } else {
      /call cast "Veil of the Inferno" item
      /delay 1s
  }
  /if (${Me.Buff[Eternal Ward].ID} > 0) {
    /if (${Me.Buff[Eternal Ward].Duration} < 60) {
      /call cast "Prismatic Ring of Resistance" item
      /delay 1s
    }
  } else {
      /call cast "Prismatic Ring of Resistance" item
      /delay 1s
  }
  /if (${Me.Buff[Pious Fury].ID} > 0) {
    /if (${Me.Buff[Pious Fury].Duration} < 60) {
      /call cast "Pious Fury" gem7
      /delay 1s
    } 
  } else {
      /call cast "Pious Fury" gem7
      /delay 1s
  }
  /if (${Me.Buff[Armor of Unrelenting Faith].ID} > 0) {
    /if (${Me.Buff[Armor of Unrelenting Faith].Duration} < 60) {
      /call cast "Armor of Unrelenting Faith" gem6
      /delay 1s
    }
  } else {
      /call cast "Armor of Unrelenting Faith" gem6
      /delay 1s
  }
  /if (${Me.Buff[Brell's Stony Guard].ID} > 0) {
    /if (${Me.Buff[Brell's Stony Guard].Duration} < 60) {
      /call cast "Brell's Stony Guard" gem8
      /delay 1s
    }
  } else {
      /call cast "Brell's Stony Guard" gem8
      /delay 1s
  }
  /if (${Me.Buff[Frostreaver's Blessing].ID} > 0) {
    /if (${Me.Buff[Frostreaver's Blessing].Duration} < 60) {
      /call cast "Ring of Dain Frostreaver IV" item
      /delay 1s
    }
  } else {
      /call cast "Ring of Dain Frostreaver IV" item
      /delay 1s
  }

  /call ChatMsg "All buffs checked and are good.....ready to go!"
/return
 
Thanks thats waht I was looking for ....

OK now could I see the rest of the mac possibly cause it is doing call's for casting and chatmsg so need to deal with them ....


OK figured out you needed MQ2cast loaded....
 
Last edited:
Clicky sub

Users who are viewing this thread

Back
Top