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

Stay standing (1 Viewer)

SaBiN

New member
Joined
Jul 31, 2005
RedCents
I'm sure there is an easy way to do this.

I'm looking for something that would keep you standing, or stand you back up and keep attacking mobs that have an FD proc. Would be even cooler if the macro would use taunt and bazu bellow whenever they are available. :)
 
Hmm
Rich (BB code):
|Mochimac.mac  --Hey its ghetto
Sub main
:mochila
/docommand ${If[$!={Me.Standing},/stand
/doability Taunt
/aa act Bazu Bellow
/goto :mochila
/return

I think ...Alittle iffy where to place the != operator----Yeah its wrong on that line rest is good
Also fuck ever knowing ability ##'s /aa act abilityname FTW
 
Try this:
Rich (BB code):
|--------------------------------------------------
| Name:         stand.mac
| Author:         plink
|--------------------------------------------------
| Stands your character if he is not standing.
| Will also Taunt whenever Taunt is ready.
|--------------------------------------------------

Sub Main
/echo Automatically Standing and Taunting.
:Loop
/if (${Me.State.NotEqual[STAND]}) /stand
/if ((${Target.ID})&&(${Me.AbilityReady[Taunt]})) /doability Taunt
/goto :Loop
/return
I'm unsure if Bazu Bellow is an ability, disc, or AA so I'll let you get that part. This should get you started though.

plink
 
Last edited:
Rich (BB code):
|Mochimac.mac  --Hey its ghetto
Sub main
:mochila
/if (${Me.State.NotEqual[STAND]}) /stand
/if ((${Target.ID})&&(${Me.AbilityReady[Taunt]})) /doability Taunt
/aa act Bazu Bellow
/goto :mochila
/return

Ought to be set, GJ plink
 
Just found out that Bazu Bellow was a disc so add this code below the other /if line.
Rich (BB code):
/if ((${Target.ID})&&(${Me.CombatAbilityReady[Bazu Bellow]})) /disc Bazu
If /disc Bazu doesn't work, try /disc Bazu Bellow or /disc "Bazu Bellow". I'm not sure how to handle /disc's since I have all casters. Maybe someone who knows can tell us the correct way to do it.

plink
 
Any way to train feign death as a monk? autoskills doesn't work it procs once and shuts down. as i am just a lvl 23 monk i like to train my abilities as i did with my casters with the spellcast.mac. was just wondering if there was a mac out there that will allow you to feigndeath continuosly.
 
write a short macro

Rich (BB code):
Sub Main
    /declare OldSkill int
    /varset OldSkill ${Me.Skill["Feign Death"]}
:start
 /melee feigndeath
 /stand on
 /if (${Me.Skill["Feign Death"]}]}=200) /endmacro
/goto :start
/return

is max 200?

is "Feign Death" right words for the skill?



But i would go to a non populated place to do this... where most people don't go
 
Thanks army but it didn't work i wrote another one that uses a general ability button. I placed feign death on the do ability 6 and just run it that why works good for me.


Sub Main

:start
/doability 6
/stand on

/goto :start
/return

the one you posted errors like this:
DoCommand-Couldn't parse '/melee feign death'
Feigndeath.mac@6 (main):/melee feign death
Unparsable in Calculation:']'
Feigndeath.mac@8:/If($(Me.Skill["Feign death"]}]}=200)/endmacro
The current macro has ended.
Failed to parse /If condition '(NULL]}=200)',non-numeric encountered
 
you have to have /mq2autoskills loaded

8-)

and i am not sure the right word to check the FD skill.. thats why i asked that..

ability page works too .. but some will forget to switch page etc etc..

so load autoskills and your set..

just need to know what ability FD is for skill ups

could do it another way .. with an event... but thats crappy .. would work though
 
Stay standing

Users who are viewing this thread

Back
Top