• 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 --->

Macro/Code for... (1 Viewer)

Here is a code segment to do the Kaladim mushrooms. It could be placed into a main shell and then used to do the ones you want:

Rich (BB code):
Sub main
   :loop
   /itemtarget
   /delay 1s
   /if (${ItemTarget.Name.NotEqual[NULL]}) {
      /if (${ItemTarget.Name.Equal[Brew Barrel]}) {
         /delay 1m
         /goto :loop
      }
      /squelch /face item
      /delay 5
      /call GotoItem
      /squelch /face item fast
      /call GetItem
      /delay 1s ${Cursor.ID}
      /delay 2
      /if (${Cursor.ID}) /autoinv
   }
   /delay 2s
   /goto :loop
/return

Sub GotoItem
   :loop
   /if (${ItemTarget.Distance}>0.8) {
      /squelch /face item fast
      /keypress forward hold
      /delay 1
      /keypress forward
      /goto :loop
   }
/return

Sub GetItem
   /declare lookangle int
   /click left center
   /if (!${MacroQuest.LClickedObject} || ${Target.ID}) {
      /look -128
      :loop
      /click left center
      /if (${Target.ID}) /target clear
      /if (!${MacroQuest.LClickedObject} && ${Me.Look}<0) {
         /varcalc lookangle ${Me.Look}+2
         /look ${lookangle}
         /goto :loop
      }
   }
/return
 
Macro/Code for...

Users who are viewing this thread

Back
Top