Search found 11 matches

by BobWeaver
Fri Jun 10, 2011 4:40 pm
Forum: MQ2::Help
Topic: Crashing when looting
Replies: 5
Views: 1082

Re: Crashing when looting

All of my looting CTD issues were resolved with the 5/27/2011 patch.
by BobWeaver
Mon Jun 14, 2010 6:54 pm
Forum: MQ2::Macros::Help
Topic: ummm i was trying to remove the active hack part
Replies: 21
Views: 4392

Re: ummm i was trying to remove the active hack part

By far the best $10 I ever spent.
by BobWeaver
Wed Nov 19, 2008 3:11 pm
Forum: MQ2::Macros::Requests
Topic: Dain MM Macro
Replies: 4
Views: 1703

There's actually one in the VIP section. Doesn't take a huge contribution to get into it and it's loaded with great stuff. Do a quick donation and it's all yours. ;)
by BobWeaver
Sun Jul 22, 2007 12:48 pm
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

Yep, it performs Math.Calculate for you automatically. Then it basically gives you a boolean response based on your criteria so you can perform commands based on that result. Probably the most important command we have!
Thanks for the help, guys.
by BobWeaver
Sat Jul 21, 2007 1:37 pm
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

I put that line of code inside another /if statement to prevent a short cast from overwriting a long cast:

Code: Select all

/if (${Macro.RunTime} + ${Spell[${SpellName}].CastTime} > ${intFreeToMoveTime}) {
Thought I'd have to use MathCalc, but it seems to work great now.
Thanks again.
by BobWeaver
Fri Jul 20, 2007 2:35 pm
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

I did not even think of that. It works even better now. Thanks for a very solid answer without condescending tone. ;)
You are very helpful, I really appreciate it.
by BobWeaver
Fri Jul 20, 2007 1:20 pm
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

jacensolo, I used your idea - thanks. Here is the subroutine code if anyone is interested: |============================| |Group Cast code: |--------------------------------------------------- Sub Event_GroupCast(SpellMessage, SpellCaster, SpellName) /for Loops 1 to ${Group.Members} /if (${Group.Mem...
by BobWeaver
Fri Jul 20, 2007 11:42 am
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

If he has the group leader spell awareness AA, couldn't he just use an event to detect however it tells him naturally? Its been a while since I've played with someone who had the ability, but doesnt it add <SpellName> after "begins to cast a spell" bit? So wouldnt this work: #event GroupC...
by BobWeaver
Fri Jul 20, 2007 11:04 am
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

Yeah, that's what I experienced. Is it supposed to work? Is there a way to find out if/what a group member is casting?
Thanks for the help!
by BobWeaver
Fri Jul 20, 2007 8:42 am
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

Yeah, I forgot the ending "}" here. I'll make the edit. There are three people in the group. I really feel like it should work, but I can't see why it is not.
by BobWeaver
Fri Jul 20, 2007 12:47 am
Forum: MQ2::Macros::Help
Topic: Detect Spells cast by Group Members?
Replies: 14
Views: 4393

Detect Spells cast by Group Members?

I'm trying to write some code into a macro that will detect if a group member is casting a spell. I tried the following (just to display a value): /echo ${Group.Member[${Loops}].Casting.ID} But it comes up null for all group members except myself. I figured this was because I did not have the Leader...