Search found 50 matches

by drzoon
Fri Aug 24, 2012 3:49 pm
Forum: MQ2::Help
Topic: Running MQ2Auth
Replies: 1
Views: 697

Re: Running MQ2Auth

That's expected behaviour. It creates (or appends to) the file MQ2Auth.h in the MQ2Main folder.
by drzoon
Sat May 12, 2012 6:42 am
Forum: MQ2::Help
Topic: Is anyone maintaining the HTML or Wiki documentation?
Replies: 2
Views: 724

Re: Is anyone maintaining the HTML or Wiki documentation?

The wiki is for the most part, fully up to date. The last update time you're looking at is specifically for the main page, which is locked from editing except by the admins. The sub pages are editable by anyone, and those are kept up to date.
by drzoon
Thu Apr 19, 2012 6:45 am
Forum: MQ2::Macros::Help
Topic: Best way to check if Im dead?
Replies: 7
Views: 1521

Re: Best way to check if Im dead?

I use ${Me.Hovering} to trigger my GetRezzed subroutine.
by drzoon
Sun Nov 13, 2011 1:02 pm
Forum: MQ2::Help
Topic: Events
Replies: 9
Views: 1645

Re: Events

I've looked at your code and it should work as you expect. The fact that when you /echo ${Targ} you get the correct value, indicates that the correct value is being passed to the sub. So it appears that there is an issue with the /assist line or with the /delay line. After thinking about it for a wh...
by drzoon
Sat Nov 12, 2011 5:35 pm
Forum: MQ2::Help
Topic: Events
Replies: 9
Views: 1645

Re: Events

To be clear I understand this, is the following what is happening? 1. There is a group of 3 members: Bob (tank), Jane (chanter) and Fred. 2. Bob is targeting Mob1 and tanking it. 3. Jane is targeting Bob. 4. Mob2 runs in as an add. 5. Fred targets Mob2 and says in group "mez". 6. Jane keep...
by drzoon
Sat Nov 12, 2011 4:39 pm
Forum: MQ2::Help
Topic: Events
Replies: 9
Views: 1645

Re: Events

Your problem is occuring because every #event passes the full matching line as the first parameter to the sub. This is a feature of the #event code and cannot be changed. Additional variables, specified by #1#, #2#, etc, are passed as parameters after the initial line. To fix this, change every Sub ...
by drzoon
Mon Feb 21, 2011 5:47 am
Forum: MQ2::Macros::Help
Topic: Tweaking and fixing the bugs
Replies: 6
Views: 1371

Re: Tweaking and fixing the bugs

The problem with it is that no-one has any idea of what it should be doing, so you're basically asking for someone to run this in game and try and figure out what you intended it to do, and then work on why it's not doing what you may or may not have intended it to do... which is a lot of work. Anyw...
by drzoon
Wed Jan 12, 2011 9:44 am
Forum: MQ2::Macros::Help
Topic: validation of 1 line of code
Replies: 1
Views: 654

Re: validation of 1 line of code

There's a number of errors in that single line: You need a $ in front of both Cast.Ready statements. Eg. ${Cast.Ready} or ${Cast.Ready[Minor Shielding|gem1]} You have a ! in front of the 2nd Cast.Ready statement, which negates that statement. Your if statement basically says "If I'm ready to ca...
by drzoon
Wed Nov 17, 2010 6:13 am
Forum: MQ2::Macros::Help
Topic: no target
Replies: 1
Views: 576

Re: no target

Code: Select all

/if (${Me.Target.ID}) {
  /echo I have a target
} else {
  /echo I have no target
}
by drzoon
Thu Oct 28, 2010 5:22 am
Forum: MQ2::Bug Reports
Topic: Itemnotify loot... problem
Replies: 11
Views: 2262

Re: Itemnotify loot... problem

How I understand it is this: The invslot DataType does not work as it did before the HoT expansion and the change to larger bags. Due to the fact that bags can have anything up to 20 slots, the EQ client now only provides the slot information when the bags are open. Any TLO or other DataType that re...
by drzoon
Sat Jun 26, 2010 3:53 am
Forum: MQ2::Help
Topic: MQ2map help
Replies: 2
Views: 734

Re: MQ2map help

Click the Labels button on the map window?
by drzoon
Wed May 05, 2010 10:25 am
Forum: MQ2::Macros::Help
Topic: First time macro for enc
Replies: 5
Views: 1390

Re: First time macro for enc

A couple of things that I can see: Your main sub doesn't have a /return line. The macro may work as is, but it's not a good practice to get into. Your various Spell variables need to have braces on either side, not brackets. Eg. $(SpellDOT) needs to be ${SpellDOT} Gotos are quite slow in MQ2 and I t...
by drzoon
Mon Apr 19, 2010 4:00 pm
Forum: MQ2::Macros::Help
Topic: Param issues with combat text
Replies: 5
Views: 1760

Re: Param issues with combat text

I use the following events in my macro to grab the name of the mob hitting me: #event UnderAttack "#1# tries to #*# YOU, but #*#" #event UnderAttack "#1# bashes YOU for #*#." #event UnderAttack "#1# crushes YOU for #*#." #event UnderAttack "#1# hits YOU for #*#.&qu...
by drzoon
Mon Mar 29, 2010 7:16 am
Forum: MQ2::Macros::Requests
Topic: Looking for macro to add numbers from chat
Replies: 13
Views: 3554

Re: Looking for macro to add numbers from chat

How about:

Code: Select all

/echo ${Math.Calc[${ChatText.Arg[1,=]}]}
by drzoon
Thu Jan 14, 2010 1:57 pm
Forum: MQ2::Macros::Snippets
Topic: Ninjadvloot.inc v1.3
Replies: 56
Views: 36319

Or change this line:

Code: Select all

/nomodkey /itemnotify loot${i} ${WhichButton}mouseup
to

Code: Select all

/nomodkey /shiftkey /itemnotify loot${i} ${WhichButton}mouseup
This change is actually in the v1.5 code at the top of this page, which I assumed you were using.