Search found 21 matches

by Skye
Tue Sep 07, 2004 5:27 pm
Forum: MQ2::Macros::Help
Topic: Simple Open/Pass Door
Replies: 3
Views: 1334

Thank you so much for this note, dman. The following HUD code was causing my CTD, as well:

Code: Select all

      tTargetMaxMelee=1,550,098,255,255,255,${If[${Target.ID},Max Melee:,]} 
       TargetMaxMelee=1,610,098,010,200,010,${If[${Target.ID},${Target.MaxRangeTo},]} 
by Skye
Thu Jun 17, 2004 10:36 pm
Forum: MQ2::Bug Reports
Topic: Bazaar Search infinite loop
Replies: 5
Views: 1410

Thanks for the fix, DKAA.
by Skye
Mon May 10, 2004 10:32 pm
Forum: MQ2::Macros::Conversion Help
Topic: CUSTOM EVENTS CHANGE COMING
Replies: 35
Views: 21423

Thanks, Lax - really looking forward to this addition.
by Skye
Mon May 10, 2004 10:29 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: canny.mac
Replies: 8
Views: 3482

Just as a point of reference, you can make use of:

Code: Select all

${Me.AltAbilityTimer[Cannibalization]}
and:

Code: Select all

/alt activate ${AltAbility[Cannibalization].ID}
and:

Code: Select all

${AltAbility[Cannibalization].Spell.CastTime}
to remove timers and other "magic numbers" from this macro.
by Skye
Sat May 08, 2004 4:15 pm
Forum: MQ2::Macros::Conversion Help
Topic: CUSTOM EVENTS CHANGE COMING
Replies: 35
Views: 21423

Lax wrote: i dont get the "liking to keep to standards" comment though.. perl/regex are hardly "standard" My comment refers to the definition of a custom scripting language - which is even further from convention than adopting a known language. I realize that the motivation is t...
by Skye
Sat May 08, 2004 2:07 pm
Forum: MQ2::Macros::Conversion Help
Topic: CUSTOM EVENTS CHANGE COMING
Replies: 35
Views: 21423

This is perfect - I can really consolidate much of my buff wearing off code (guess which class I like to play) and make a more dynamic handler with this addition. Of course, I would prefer standard regexp formats - and well, I like the perl interface too - but then again I'm wacked that way (liking ...
by Skye
Wed May 05, 2004 11:19 pm
Forum: MQ2::Bug Reports
Topic: CTD - bzsrch
Replies: 2
Views: 758

CTD - bzsrch

/bzsrch "Blah Blah" I suspect we are missing an embedded offset - love the magic number embedded in here: // clear out the old list or the new entries will be // added to them class CListWnd *ptr = *(class CListWnd **) ((char *)[b]pBazaarSearchWnd+0x39B0[/b]); ptr->DeleteAll(); Stack Trace...
by Skye
Wed May 05, 2004 12:57 am
Forum: MQ2::Help
Topic: Window Hook
Replies: 3
Views: 920

Thank you for the quick response, DKAA. I could tell that the hooks were being called only at initialization ... since I have never used different skins, using /loadskin never occurred to me! I do appreciate the pointer.
by Skye
Tue May 04, 2004 11:56 pm
Forum: MQ2::Help
Topic: Window Hook
Replies: 3
Views: 920

Window Hook

Looking for a piece of information on the startup sequence of events/hooks. BACKGROUND I spiraled into debugging a previously working script today - going out of my mind - a very simple macro was breaking: ${Window[blahblah]} was always returning NULL. OBSERVATION After some black-box debugging (I w...
by Skye
Mon May 03, 2004 12:47 am
Forum: Macro Help (MQ1)
Topic: Selling Macro
Replies: 3
Views: 3876

I wrap this around an INI-driven list of items that I don't ever want to keep. I kind of hacked this around to get it back to the poster's format - hope it helps. [--edit--] Oh, this assumes that your packs are open - otherwise the /ctrlkey /itemnotify code will fail. Sub SellItem /declare OldMoney ...
by Skye
Mon Apr 26, 2004 1:37 pm
Forum: MQ2::Bug Reports
Topic: /itemnotify CTD
Replies: 18
Views: 5802

Thanks for the recent fix, Lax. With the new-and-improved idiot-proof feedback, I now see that the following are inappropriate parameters to /itemnotify ... loot0 loot1.00 After changing my loot code to use a 1-based index instead of 0-based index ... as well as converting my /varadd to strip back d...
by Skye
Sat Apr 24, 2004 2:16 pm
Forum: MQ2::Bug Reports
Topic: /itemnotify CTD
Replies: 18
Views: 5802

It allowed me to use the old /click code instead of relying upon /itemnotify?
by Skye
Sat Apr 24, 2004 4:09 am
Forum: MQ2::Bug Reports
Topic: /itemnotify CTD
Replies: 18
Views: 5802

also getting CTD using /itemnotify loot1 rightmouseup.

too late - 2am here atm so I'm punting for now...

s/BOOL ParseMouseLoc/BOOL NewParseMouseLoc/
s/BOOL OldParseMouseLoc/BOOL ParseMouseLoc/
by Skye
Wed Apr 21, 2004 9:09 am
Forum: MQ2::Bug Reports
Topic: CTD when I /unload with current build
Replies: 13
Views: 4199

OK OK - tough crowd - thank you very much for the pointer.
by Skye
Tue Apr 20, 2004 12:21 pm
Forum: MQ2::Bug Reports
Topic: CTD when I /unload with current build
Replies: 13
Views: 4199

Your welcome :-)

How do you personally work through such issues - do you build the system in debug mode and run under a debugger? Curious as to why the project only has a Release Mode target.