Infiltrating the Guardian XP bug Macro

i missed Order of Three raid - Removed an unnamed exploit., all i saw earlier was

Removed an unnamed exploit.

Once in awhile i smoke crack. So ignore me.
 
This isnt nerfed, seems to be working fine. When mq2 is backup,this macro should rock.
 
With MQ down, I was piddling aroudn with this mac, and was hoping someone could take a look at my mac, I added a few lines of buffing code (since my SK is so gimp) and i was wondering if I got it right or screwed it up:

Code:
|----------------------------------------------------------------------- 
| Program     : cpucode.mac 
| Author      : DemoAnte
| Purpose     : Cycle "199233" Code to CPU and kill the spawns, rinse and repeat.
| 
| Version     : 1.0 04/07/2012
| 
| Useage      : /mac cpucode
|
| Note: 	This macro is for power leveling, it will not give you AA.  Shroud your group to 65... 
|	Obtain "Infiltrating the Guardian" unshroud your toon in which is going to do the dirty work.
|	Progress the quest up till you have the book, read it, and are ready to confront "The CPU"...  Then run this Macro...
|
| Other: 	This macro will use Invis potions, it also is currently set only to spawn 20 mobs, if your are better suited for more, raise the threshold, to a max of 80.
|----------------------------------------------------------------------- 

#event ImDead     	"You have been slain by#*#" 
#event Zoned 	"LOADING, PLEASE WAIT..." 

Sub Main
|-----------------------------
	/cleanup
	/target "the cpu"
	/echo Ready to fire on all cylinders!
:mainloop
	/doevents
	/if (${Spawn[gm].ID}) /call GMCheck 
	/echo *peeks around* GM free... LMFAO!
	/if (${Me.PctHPs}<=80) /goto :heal
	/stand
	[COLOR="Yellow"]/if (!${Me.Buff[Banshee Aura].ID} ) {
	/cast Banshee Aura
	/delay 5s
 	}
	/if (!${Me.Buff[Drape of Corruption].ID} ) {
	/cast Drape of Corruption
	/delay 5s
 	}
	/if (!${Me.Buff[Shroud of the Gloomborn].ID} ) {
	/cast Shroud of the Gloomborn
	/delay 5s
 	}
	/if (!${Me.Buff[Soulthirst Horror].ID} ) {
	/cast Soulthirst Horror 
	/delay 5s
 	}
		[/COLOR]	/target "the cpu"
		/delay 1s
	/stick 12
	/echo Girl look at that body!
|--- Invis below, possible codes following...  /casting "Cloudy Potion" 14514, Cloak of Shadows /alt activate 531
	/casting "Cloudy Potion" 14514
	/delay 1s
	/echo I work out!
	/goto :sayloop
:sayloop
	/doevents
	/if (${Spawn[gm].ID}) /call GMCheck 
	/if (${Target.Type.Equal[NPC]}) /say 199233
		/delay 2s
|--- Change the below code ">=20" to whatever amount you think you can handle up to 80.
	/if (${SpawnCount[npc radius 75 zradius 10]}>=20) {
     /hidecorpse all
     /echo I'M SEXY AND I KNOW IT...
     /goto :killloop
     /return
}
/goto :sayloop
/return

:killloop	
	/echo Wiggle, wiggle, wiggle, wiggle, wiggle!  Yeah!
	/delay 1s
/target "a mechano steam"
	/delay 1s
	/hidecorpse all
   /if (${Target.Type.Equal[corpse]} || ${Target.Type.Equal[pet]} || ${Target.Type.Equal[pc]}) {
      /squelch /target "a mechano steam" radius 40 next
   }
   /if (!${Me.Combat} && ${Target.Distance} > 100 && ${Target.Type.Equal[npc]}) {
      /echo This is how I roll, come on ladies it's time to go!
      /squelch /goto :killloop
   /goto :killloop     
      /return
   }
   /if (!${Me.Combat} && ${Target.Distance} <= 100 && ${Target.Type.Equal[npc]}) {
|--- Below are Warrior abilities / aa's, you could replace these with your classes aoe / damage discs
      /if (!${Me.Combat} && ${Me.CombatAbilityReady[Cyclonic Blades Rk. II]}  ) /disc Cyclonic Blades Rk. II
      /if (!${Me.Combat} && ${Me.CombatAbilityReady[Furious Discipline]}  ) /disc Furious Discipline
      /if (!${Me.Combat} && ${Me.AltAbilityReady[Rampage]}  ) /alt act 109
      /squelch /attack on
      /delay 1s
      /stick 12
      /delay 3s
   /goto :killloop
      /return
   }
/if (${SpawnCount[npc radius 50 zradius 10]}>1) /goto :killloop
/delay 2s
/goto :mainloop
/return

:heal
	/echo No shoes, no shirt, and I still get service!
	/goto :heal2
/return

:heal2
	/doevents
	/if (${Me.State.Equal[STAND]}) /sit
	/delay 9s
	/if (${Me.PctHPs}>=95) /goto :mainloop
	/delay 1s
	/goto :heal2
/return

|-------------------------------------------------------------------------------- 
|SUB: Zoned 
|-------------------------------------------------------------------------------- 
Sub Event_Zoned 
  /echo Zoned going AFK!
  /delay 10s
  /sit
  /afk Bio, BRB!
  /endmacro 

|-------------------------------------------------------------------------------- 
|SUB: ImDead
|-------------------------------------------------------------------------------- 
Sub Event_ImDead 

   /echo Bummer ! 
   /delay 20s
   /afk Bio, BRB!
   /endmacro
/return 

|-------------------------------------------------------------------------------- 
|SUB: GM Check 
|-------------------------------------------------------------------------------- 
Sub GMCheck 
   /if (${Spawn[gm].ID}) { 
      /beep 
      /beep 
      /beep 
 
      /echo GM has entered the zone! 
      /keypress forward 
      /keypress back 
      /afk Bio, BRB!
      /endmacro 
   } 
 
/return
 
I would move the buff section to its own Sub Routine, and have it exit back to main section after it casts one buff. Allow you to at least heal back up some as you wont always cast through the beatings.
 
I think this is what Braedo is looking for...

Code:
|----------------------------------------------------------------------- 
| Program     : cpucode.mac 
| Author      : DemoAnte
| Purpose     : Cycle "199233" Code to CPU and kill the spawns, rinse and repeat.
| 
| Version     : 1.0 04/07/2012
| 
| Useage      : /mac cpucode
|
| Note: 	This macro is for power leveling, it will not give you AA.  Shroud your group to 65... 
|	Obtain "Infiltrating the Guardian" unshroud your toon in which is going to do the dirty work.
|	Progress the quest up till you have the book, read it, and are ready to confront "The CPU"...  Then run this Macro...
|
| Other: 	This macro will use Invis potions, it also is currently set only to spawn 20 mobs, if your are better suited for more, raise the threshold, to a max of 80.
|----------------------------------------------------------------------- 

#event ImDead     	"You have been slain by#*#" 
#event Zoned 	"LOADING, PLEASE WAIT..." 

Sub Main
|-----------------------------
	/cleanup
	/target "the cpu"
	/echo Ready to fire on all cylinders!
:mainloop
	/doevents
	/if (${Spawn[gm].ID}) /call GMCheck 
	/echo *peeks around* GM free... LMFAO!
	/if (${Me.PctHPs}<=80) /goto :heal
	/stand
	/call CKBuff
:targetloop	
	/target "the cpu"
		/delay 1s
	/stick 12
	/echo Girl look at that body!
|--- Invis below, possible codes following...  /casting "Cloudy Potion" 14514, Cloak of Shadows /alt activate 531
	/casting "Cloudy Potion" 14514
	/delay 1s
	/echo I work out!
	/goto :sayloop
:sayloop
	/doevents
	/if (${Spawn[gm].ID}) /call GMCheck 
	/if (${Target.Type.Equal[NPC]}) /say 199233
		/delay 2s
|--- Change the below code ">=20" to whatever amount you think you can handle up to 80.
	/if (${SpawnCount[npc radius 75 zradius 10]}>=20) {
     /hidecorpse all
     /echo I'M SEXY AND I KNOW IT...
     /goto :killloop
     /return
}
/goto :sayloop
/return

:killloop	
	/echo Wiggle, wiggle, wiggle, wiggle, wiggle!  Yeah!
	/delay 1s
/target "a mechano steam"
	/delay 1s
	/hidecorpse all
   /if (${Target.Type.Equal[corpse]} || ${Target.Type.Equal[pet]} || ${Target.Type.Equal[pc]}) {
      /squelch /target "a mechano steam" radius 40 next
   }
   /if (!${Me.Combat} && ${Target.Distance} > 100 && ${Target.Type.Equal[npc]}) {
      /echo This is how I roll, come on ladies it's time to go!
      /squelch /goto :killloop
   /goto :killloop     
      /return
   }
   /if (!${Me.Combat} && ${Target.Distance} <= 100 && ${Target.Type.Equal[npc]}) {
|--- Below are Warrior abilities / aa's, you could replace these with your classes aoe / damage discs
      /if (!${Me.Combat} && ${Me.CombatAbilityReady[Cyclonic Blades Rk. II]}  ) /disc Cyclonic Blades Rk. II
      /if (!${Me.Combat} && ${Me.CombatAbilityReady[Furious Discipline]}  ) /disc Furious Discipline
      /if (!${Me.Combat} && ${Me.AltAbilityReady[Rampage]}  ) /alt act 109
      /squelch /attack on
      /delay 1s
      /stick 12
      /delay 3s
   /goto :killloop
      /return
   }
/if (${SpawnCount[npc radius 50 zradius 10]}>1) /goto :killloop
/delay 2s
/goto :mainloop
/return

:heal
	/echo No shoes, no shirt, and I still get service!
	/goto :heal2
/return

:heal2
	/doevents
	/if (${Me.State.Equal[STAND]}) /sit
	/delay 9s
	/if (${Me.PctHPs}>=95) /goto :mainloop
	/delay 1s
	/goto :heal2
/return

|-------------------------------------------------------------------------------- 
|SUB: CKBuff
|-------------------------------------------------------------------------------- 
Sub CKBuff
   /if (!${Me.Buff[Banshee Aura].ID} ) {
   /cast Banshee Aura
   /delay 5s
 }

   /if (!${Me.Buff[Drape of Corruption].ID} ) {
      /cast Drape of Corruption
      /delay 5s
 }

   /if (!${Me.Buff[Shroud of the Gloomborn].ID} ) {
      /cast Shroud of the Gloomborn
      /delay 5s
 }

   /if (!${Me.Buff[Soulthirst Horror].ID} ) {
      /cast Soulthirst Horror 
      /delay 5s
 }

   /delay 1s
/goto :targetloop

/return

|-------------------------------------------------------------------------------- 
|SUB: Zoned 
|-------------------------------------------------------------------------------- 
Sub Event_Zoned 
  /echo Zoned going AFK!
  /delay 10s
  /sit
  /afk Bio, BRB!
  /endmacro
/return

|-------------------------------------------------------------------------------- 
|SUB: ImDead
|-------------------------------------------------------------------------------- 
Sub Event_ImDead 

   /echo Bummer ! 
   /delay 20s
   /afk Bio, BRB!
   /endmacro
/return 

|-------------------------------------------------------------------------------- 
|SUB: GM Check 
|-------------------------------------------------------------------------------- 
Sub GMCheck 
   /if (${Spawn[gm].ID}) { 
      /beep 
      /beep 
      /beep 
 
      /echo GM has entered the zone! 
      /keypress forward 
      /keypress back 
      /afk Bio, BRB!
      /endmacro 
   } 
 
/return
 
Last edited:
"A strange and magical presence prevents you from entering. It's too dangerous to enter at the moment"
Been doing this all day and am getting this now after the "Emergency Patch" Think its nerfed.
 
"A strange and magical presence prevents you from entering. It's too dangerous to enter at the moment"
Been doing this all day and am getting this now after the "Emergency Patch" Think its nerfed.

Almost all instances seem fucked at the moment. Not just this one.
 
Its not nerfed, you would just have to do it manually instead of using this macro.
 
Its not nerfed, you would just have to do it manually instead of using this macro.

We are aware, thanks tips. Bit worried that if they did kill of the instances during the emergency patch a few hours ago then this patch in the morning will kill them off for good for shrouding.
 
I don't think they "killed off instances". For the past week or so instances have been up and down. There was about a 2 hours period just a couple days ago when no one on my server was able to get an instance.

Plus, I got a mecha instance around 5pm, and it just finally ended and booted me out an hourish ago.
 
There was a post on the forums that all instances are down currently till patch tomorrow morning. It won't be fixed till new patch hits tomorrow, that was according to one of the EQ devs on said forum.
 
Incase any of you are wondering this still seems to work.
 
They haven't fixed it in over a year. No reason to believe they'll do so now.

You can use this 'trick' anywhere. Only thing that makes this particular instance popular is the ability to repeatedly mass summon easy-to-kill mobs without competition in an open zone.
 
Anyone on Fv server that wants Aa pl in this mission let me know . U have to be 65 - 76 unshrouded. With ceremonial potions it yields 4-500 Aa an hour
 
U have to be 65 - 76
if you delevel and have already over 2k aa you run into a few issues.....
1)you wont have alot of AA that you can purchase
2)you wont earn anywhere near as fast an hr......potion lotd or not

this is ideal for a brand new toon w no AA
 
Yeah, dont delevel....bad option...just make a new toon...takes an hour to get a toon to 70
 
and indeed a cleric 95 with shining armor buff no more need heal ) rune proc heal and enough for a tank 95 ;
there are a macro for make them pop all the 99 ?
 
Last edited: