Clicky Armor Macro

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

Moderator: MacroQuest Developers

md703
a lesser mummy
a lesser mummy
Posts: 34
Joined: Wed Oct 09, 2002 11:04 pm

Clicky Armor Macro

Post by md703 » Sat Oct 12, 2002 9:09 pm

A clicky armor script would be useful for all i think.

Perhaps one that works like /macro arm 170

where 170 is the delay....

to push it even further, and have clicky twisting, you can maybe do..../macro arm 170 leg 120...etc

md703
a lesser mummy
a lesser mummy
Posts: 34
Joined: Wed Oct 09, 2002 11:04 pm

Post by md703 » Sun Oct 13, 2002 7:31 pm

Whelp i found this, and tried to edit it for a ss bp, and it didn't work. it gave me the message /click [left] [right]. Any ideas?

Code: Select all


| DeapWater Helm Heal macro 
| Author, eqjim, modified by curiousgeorge, cleaned up by DeathSpiral 

sub Main 
   | No need to heal if we are full health 
   /if n $char(hp,pct)==100 /return 

   | Make sure the inventory window is open 
   /if "$invpanel"!="true" /press i 

   | Equip the helm 
   /finditem "Singing Steel Breastplate" 
   /click left equip chest 

   :CheckHP 
      | Right click for the effect 
      /click right equip chest 

      | Delay 6 seconds for the casting 
      /delay 60 

      | If we aren't full health, rinse and repeat 
      /if n $char(hp,pct)<100 /goto :CheckHP 

   | Close the inventory window 
   /if "$invpanel"=="TRUE" /press i 
/return

md703
a lesser mummy
a lesser mummy
Posts: 34
Joined: Wed Oct 09, 2002 11:04 pm

Post by md703 » Sun Oct 13, 2002 8:21 pm

This works, as far as healing with ss bp is concerned, however its only for oldui....

Code: Select all

| - helmheal.mac - 
| DeapWater Helm Heal macro 
| Author, eqjim, modified by curiousgeorge, cleaned up by DeathSpiral 

sub Main 
   | No need to heal if we are full health 
   /if n $char(hp,pct)==100 /return 

   :CheckHP 
      | Right click for the effect 
      /click right equip chest 

      | Delay 6 seconds for the casting 
      /delay 60 

      | If we aren't full health, rinse and repeat 
      /if n $char(hp,pct)<100 /goto :CheckHP 

   | Close the inventory window 
   /if "$invpanel"=="TRUE" /press i 
/return
Tried use this

Code: Select all

Sub Main
/press 8 
/return 
so it would push hotbutton 8 and loop it....that didn't work at all.

md703
a lesser mummy
a lesser mummy
Posts: 34
Joined: Wed Oct 09, 2002 11:04 pm

w00t

Post by md703 » Sun Oct 13, 2002 8:30 pm

This newbie learned how to code

Code: Select all

Sub Main 

:hotbotton
/press 8 
/delay 100
/goto :hotbotton
This isn't what i wanted, (the extensive /macro click chest)...only works for whatever i put in hotbotton 8, but it works right? and it loops.

Good enough for me i suppose, however its still up and open for whoever wants to make one that is more programable and newui friendly (if possible)

md703
a lesser mummy
a lesser mummy
Posts: 34
Joined: Wed Oct 09, 2002 11:04 pm

Post by md703 » Sun Oct 13, 2002 9:35 pm

This is me being a cheezy bastard, making a macro to twist snare, fear, and sorrowsong boots

Code: Select all

#event MissedNote "You miss a note, bringing your song to a close!"
Sub Main 

:hotbotton

/cast 8
/delay 4
/doevents
/delay 24
/stop
/delay 3
/press 8 
/delay 70
/goto :hotbotton
/return

Sub Event_MissedNote 
   /cast 8 
   /delay 4 
   /doevents 
/return
and this is the code for healing with ssbp with auto stop at 100% health, hotkey#9

Code: Select all

Sub Main 
:hotbotton
/if n $char(hp,pct)==100 /return
/press 9 
/delay 60
/goto :hotbotton