• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

The Crusaders XP Macro

Joined
Jan 20, 2013
RedCents
This will run The Crusaders instance for xp it will not get the task or repeat it.

Please do not attempt this on a tank that does not have COV T2 or T3 Group gear you get almost all single pulls but if you're wiping its most likely because you're under geared.

Instructions and Requirements.
mq2nav
mq2cast
mq2eqbc
mq2moveutils
mq2melee

Place Crusaders.mac, Crusaders_Ignore, End.mac, Group.mac in your macro folder.
Place mq2nav.ini in your release folder.
Place the navmesh in your mq2nav folder from cobaltscartwo.rar. (this is required because i had to edit the mesh so it would nav in the middle of doors)

Take your group to CS and go to Watcher Sprin.
Load mq2nav on all your toons.
Run Crusaders.mac after a few seconds it will end. Now go open tempest_tankname.ini and fill in all your spells and stuff (ignore the class section where it tells each class what macro to load we're doing that with group.mac instead)
Open group.mac and edit it for what macro or plugin you want each class to use i gave an example in it where it shows a zerker using mq2berzerker and everyone else using kissassist its pretty easy to understand.
Make sure mq2eqbc is loaded on all toons It does not support dannet but if people want to use that I may add it. IF you want to try to convert all the /bc commands to dannet go for it.

YOU MUST HAVE LEV the macro will look for a bst,mag,wiz,enc in the group to cast perm lev if you do not have one of these classes you MUST cast it yourself on the group and tank. Lev is used to avoid the slippery ice shit.

Now get the task and zone your group in. Once in the task /mac crusaders

The macro will end after it has gotten to the last path and will taskquit. It WILL NOT get a new task or repeat over and over. This is just a simple version to farm collectables and get xp while doing it.
 

Attachments

Last edited:
on line 1714 ${Me.Fellowship.Campfire} is returning FALSE even though you have a campfire down in the zone. So that's why the repeated campfire dropping. I commented out this line for the time being

on line 1429 and 1432, you're checking the tank's mana in order to trigger a med break. For a warrior tank, this will always return 0, thus leading to a never ending med break.
 
on line 1714 ${Me.Fellowship.Campfire} is returning FALSE even though you have a campfire down in the zone. So that's why the repeated campfire dropping. I commented out this line for the time being

on line 1429 and 1432, you're checking the tank's mana in order to trigger a med break. For a warrior tank, this will always return 0, thus leading to a never ending med break.

thanks didnt catch the med break part.

update to stop it from getting stuck in a med loop on a warrior.

change

INI:
        /if (${Me.PctMana} < 10 && ${Me.XTarget}==0) {
            /echo We need to med alittle
            /if (!${Me.Sitting}) /sit
        /bcg //sit
        /delay 600s ${Me.PctMana}>90 || ${Me.XTarget}
        /return
}

to

INI:
        /if (${Me.PctMana} < 10 && ${Me.XTarget}==0 && ${Me.Class.ShortName.Equal[SHD]} || ${Me.PctMana} < 10 && ${Me.XTarget}==0 && ${Me.Class.ShortName.Equal[PAL]} ) {
            /echo We need to med alittle
            /if (!${Me.Sitting}) /sit
        /bcg //sit
        /delay 600s ${Me.PctMana}>90 || ${Me.XTarget}
        /return
}
        /if (${Me.PctEndurance} < 10 && ${Me.XTarget}==0 && ${Me.Class.ShortName.Equal[WAR]}) {
            /echo We need to med alittle
            /if (!${Me.Sitting}) /sit
        /bcg //sit
        /delay 600s ${Me.PctEndurance}>90 || ${Me.XTarget}
        /return
}
 
Thanks for all your work on this - nice lil mac
the drop rate on the collectables sucks but this makes it a little easier to tolerate
 
trying this mac out and for some reason it just keep dropping campfires in a loop. and no end.mac. also it never uses group mac. not sure what I did wrong.
 
trying this mac out and for some reason it just keep dropping campfires in a loop. and no end.mac. also it never uses group mac. not sure what I did wrong.

do /echo ${Me.Fellowship.Campfire}

make sure that is working in VV im using next so i cannot check.

It wont use group..mac until after it passes the campfire sub. Also you dont need end.mac.
 
if I manually put 1 down it will destroy it and reset it over and over, and yes on VV. was working earlier when I wasn't in a fellowship LOL
 
The Crusaders XP Macro

Users who are viewing this thread

Back
Top
Cart