EQBC - The Way To Skip Macros (my post from mqemulator.net)

Third party software discussion goes here.
User avatar
Nilbus
Posts: 1258

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#11 » Thu Dec 13, 2012 4:35 pm

Just a thought on having one command give a sequenece of spells.

Have the necro have a hotkey with

/pause (cast time + recovery time + a little bit for lag), /cast <gem # of first dot>
/pause (cast time + recovery time + a little bit for lag), /cast <gem # of second dot>
/cast <gem # of third dot>

set up on their bar that has a key press associated with it.

then the eqbc command can be /bct necroname //keypress "hotbutton associated with macro"

that should in theory make the timing of the delays come from the necro eq session and chain their dots in a row.

Issue of course would come from dots not having same durations, but at least it can slap all the dots on at once to start a fight
Nodyin-Nilbus-Pockit-Tiah-Rakas- Funeral
Likeatruck-Khaltos-Nilbie-Ziknaf-Prathun-Missus
Elidor
Youme-Yumme-Blazingtide-Sublin-Lissanda-Darmok
Djarik-Ikat-Nerys-Ometi-Tarana-Biln

I know way too much random stuff.

Waylander
Posts: 58

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#12 » Thu Dec 13, 2012 9:51 pm

Yeah Nilbus i've tried that actually, not for any real length of time but testing it in the guild hall against the dummies, didnt prove to work unfortunately, that was with testing it with pause and then delay.
Shinzui - 70 Warrior
Roweena - 70 Cleric
Waylander - 70 Necromancer
Kalimari - 70 Ranger
Isfriedsquid - 70 Mage
Tanaki - 70 Monk
Sunkist - 70 Rogue
Angryseahag - 70 Wziard
Niceseahag - 70 Wziard

User avatar
Nilbus
Posts: 1258

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#13 » Thu Dec 13, 2012 11:08 pm

Strange, I tested it sending the command to my SK from my mage. after I sent it SK cast spells 1 - 3 on his spell bar.
Nodyin-Nilbus-Pockit-Tiah-Rakas- Funeral
Likeatruck-Khaltos-Nilbie-Ziknaf-Prathun-Missus
Elidor
Youme-Yumme-Blazingtide-Sublin-Lissanda-Darmok
Djarik-Ikat-Nerys-Ometi-Tarana-Biln

I know way too much random stuff.

moonrazor
Posts: 111

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#14 » Fri Dec 14, 2012 8:06 am

Necro eqbc macros are notorious for being difficult. One thing I would do though is something like;

Code: Select all

/multiline ; /bct necro1 //target id ${Target.ID} ; /bct necro2 //target id ${Target.ID}
/bca //casting "Necro dot"
/pause #
/bca //casting "necro dot2"


I'm sure I could trim that down a bit, but I don't have access to a necro, so I can't do testing on it as I would normally.

Maybe something like,

Code: Select all

/bca  //casting "necro dot" ID ${Target.ID}


But that's just pure speculation at this point, I know you can cast at an ID, but the command line escapes me at the moment.


Nilbus wrote:Strange, I tested it sending the command to my SK from my mage. after I sent it SK cast spells 1 - 3 on his spell bar.


Could you be a bit more specific on this? Like, names of spells cast, types (nukes, dots, etc) and cast times. And the exact macro you used with pause numbers and the like?
Not to be rude, but that information would be a little more helpful then just saying you tried it and it works. :)



Moonrazor

User avatar
Nilbus
Posts: 1258

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#15 » Fri Dec 14, 2012 4:45 pm

They bct command I sent from my mage Nilbus was

/bct Nodyin //keypress "1"

on Nodyin I made a hotkey and moved it to hotbutton position 1 which is bound to 1

/pause 35, /cast 1
/pause 35, /cast 2
/cast 3

Spell Gem 1 was Javelin of Corruption Rk. I
Spell Gem 2 was Seething Anger Rk. I
Spell Gem 3 was Grasp of Death Rk. I

Nodyin proceded to cast Javelin, delay 3.5 seconds (recast time of Javelin + some change) then cast Seething Anger, wait another 3.5 seconds then cast grasp of death.

All 3 are nukes, but I don't see why it wouldn't work with dots (adjusting the delays appropriately). The macro itself doesn't use any MQ2 features, just plain EQ ones, the MQ2 usage is just in getting the command to the other character from a different one.

In fact, just tested it with 3 SK dots. Dark Constriction, Blood of Discord, True Disease.
Nodyin-Nilbus-Pockit-Tiah-Rakas- Funeral
Likeatruck-Khaltos-Nilbie-Ziknaf-Prathun-Missus
Elidor
Youme-Yumme-Blazingtide-Sublin-Lissanda-Darmok
Djarik-Ikat-Nerys-Ometi-Tarana-Biln

I know way too much random stuff.

Stickybuds
Posts: 883

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#16 » Fri Dec 14, 2012 5:23 pm

what nilbus is doing should work for any spells on any class. You just need to adjust the pause time for the spells being used + global cooldown + a little extra for latency.

so for nature's prayer rk. II which with my spell haste has a 2.0 cast time, + another 2.0 seconds for GCD, and i would add 0.2-0.5 seconds for lag i would use a /pause 42.

just do the same for your necro dots and it should work just fine.
Image

User avatar
Nilbus
Posts: 1258

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#17 » Fri Dec 14, 2012 5:33 pm

Cast time shouldn't actually matter as the /pause happens after the spells finish casting. I use 35 for the 2.5 second global and 1 second of extra. I used the exact same ingame macro for 3 insta cast sk nukes and 3 cast time SK dots.
Nodyin-Nilbus-Pockit-Tiah-Rakas- Funeral
Likeatruck-Khaltos-Nilbie-Ziknaf-Prathun-Missus
Elidor
Youme-Yumme-Blazingtide-Sublin-Lissanda-Darmok
Djarik-Ikat-Nerys-Ometi-Tarana-Biln

I know way too much random stuff.

Waylander
Posts: 58

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#18 » Fri Dec 14, 2012 6:01 pm

I think my actual issue is lag time, since I am running anywhere from 12-14 eq's at once. Maybe just have to play with my command lines a little more, and Moon if need be I can let you borrow my main necro for a night to toy with some necro stuff. You just can't keep him. Lol
Shinzui - 70 Warrior
Roweena - 70 Cleric
Waylander - 70 Necromancer
Kalimari - 70 Ranger
Isfriedsquid - 70 Mage
Tanaki - 70 Monk
Sunkist - 70 Rogue
Angryseahag - 70 Wziard
Niceseahag - 70 Wziard

User avatar
Dellanx
Posts: 300

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#19 » Fri Dec 14, 2012 6:38 pm

I am assisting of the ranger as MA, instead of the Tank, this way Wiz don't die because tank did not get agro yet. Works pretty well part.

Trying to understand the difference between /assist and /Target ID ${Target.ID}? Thanks. :D
Image
Created by Azera of Tribunal

User avatar
Nilbus
Posts: 1258

Re: EQBC - The Way To Skip Macros (my post from mqemulator.n

Post#20 » Fri Dec 14, 2012 7:57 pm

/assist tells the recepient of the tell to assist their current target. the other command I believe sends the target of the person sending the command and has the recipient target that specific target
Nodyin-Nilbus-Pockit-Tiah-Rakas- Funeral
Likeatruck-Khaltos-Nilbie-Ziknaf-Prathun-Missus
Elidor
Youme-Yumme-Blazingtide-Sublin-Lissanda-Darmok
Djarik-Ikat-Nerys-Ometi-Tarana-Biln

I know way too much random stuff.

Return to “Third party software”

Who is online

Users browsing this forum: No registered users and 0 guests