Search found 26 matches

by anon_coward
Thu Jul 10, 2008 7:09 pm
Forum: MQ2::Macros::Requests
Topic: spell ref type
Replies: 3
Views: 1105

I looked at the Lucy raw data and for simple DD spells, the damage is in the "base1" field. Then in EQData.h I found the spell struct and the there is a Base[0] field there. For now I'll just add and entry to the MQ2SpellType in the MQ2DataTypes to expose this as Spell.Damage. Unfortunatel...
by anon_coward
Thu Jul 10, 2008 2:08 pm
Forum: MQ2::Macros::Requests
Topic: spell ref type
Replies: 3
Views: 1105

spell ref type

I'm trying to improve spell selection in my macro. However the spell reference type does not provide a way to access the damage data (or any other slot1, slot2, etc data). Can the "spell" type be extended to give access to that? I assume that data already exists internally to support buff ...
by anon_coward
Thu Jul 26, 2007 12:50 pm
Forum: MQ2::Bug Reports
Topic: Can't use ':' in /keypress
Replies: 54
Views: 3865

New zip is working great. Thanks again.
by anon_coward
Tue Jul 24, 2007 2:00 pm
Forum: MQ2::Bug Reports
Topic: Can't use ':' in /keypress
Replies: 54
Views: 3865

Thanks for investigating so quickly!
by anon_coward
Tue Jul 24, 2007 12:09 pm
Forum: MQ2::Bug Reports
Topic: Can't use ':' in /keypress
Replies: 54
Views: 3865

I'm trying to type "spell:" into the bazaar search box BZR_ItemNameInput using /keypress.
by anon_coward
Tue Jul 24, 2007 10:38 am
Forum: MQ2::Bug Reports
Topic: Can't use ':' in /keypress
Replies: 54
Views: 3865

Can't use ':' in /keypress

I can't figure out how to use a colon in the /keypress command. The command /noparse didn't work for me. Any other ideas? Or is this a bug?
by anon_coward
Wed Jul 18, 2007 12:10 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Bazaar Tribute Item Search .mac
Replies: 28
Views: 12474

Question for you zoobish. Can I use part of your bazaar search code to write a FindUpgrade macro? I plan to add code to add an INI file with values for how much each stat is worth to me then compare the search results with what I have equiped and then factor in price. It should be pretty easy to ext...
by anon_coward
Fri Jul 13, 2007 6:29 pm
Forum: MQ2::Macros::Requests
Topic: Item stats
Replies: 3
Views: 1740

Great! Thanks for pointing me in the right direction. I guess the only thing left to figure out is how to open the DisplayItem for the bazaar search results. It looks like there are slots called bazaar1-80, which hopefully use the same index as the Bazaar.Item[n] list.
by anon_coward
Fri Jul 13, 2007 1:57 pm
Forum: MQ2::Macros::Requests
Topic: Item stats
Replies: 3
Views: 1740

Item stats

I would like to write a macro to help me search for upgrades in the bazaar. However I'm having trouble finding the item stats. Are item stats available in "item" objects? I don't see any way to get this directly. Would it work to bring up an item window for an item and then extract the tex...
by anon_coward
Mon Dec 06, 2004 7:49 pm
Forum: MQ2::Macros::Help
Topic: failed to parse
Replies: 8
Views: 2825

It's next to the 101 :roll:

Try this

Code: Select all

/if (${Group[${i}].Pet.PctHPs} < 101 && ${Group[${i}].Name.NotEqual[${MainAssist}]})
   /target id ${Group[${i}].Pet.ID}
   /gsay ${SpellCompHeal} on >> %T <<
by anon_coward
Wed Nov 17, 2004 2:55 pm
Forum: MQ2::Bug Reports
Topic: aliasing /cast => CTD
Replies: 70
Views: 5645

Unbounded recursion?

Looks like your alias recursively calls itself. You're probably overflowing something.
by anon_coward
Thu Oct 28, 2004 6:28 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: YAST - Yet Another Spell Trainer - none struck my fancy so..
Replies: 68
Views: 52052

Also, make sure it's not saved as "spell.mac.txt". Maybe that's just a little too obvious though.
by anon_coward
Thu Oct 28, 2004 11:39 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Loot & Sell helper
Replies: 15
Views: 7170

It only sells items the macro has automatically looted before. I wanted to make sure it didn't start selling my equipment (which my first version did :shock: ) If you manually looted a new item that you want to always auto sell, pick it up on the cursor and type: /echo set sell From now on that item...
by anon_coward
Fri Oct 22, 2004 6:13 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Loot & Sell helper
Replies: 15
Views: 7170

How about this: /if (${NearestSpawn[npc corpse radius 5].ID}) { /target corpse /loot } That way it will only try to loot corpses that are near you. If people want it included in the original macro, I would want to add an event for corpses you cant loot so you don't spam you trying to loot the same c...
by anon_coward
Fri Oct 15, 2004 4:28 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Loot & Sell helper
Replies: 15
Views: 7170

During selling It was giving a false warning for items set to KEEP. Fixed above. I guess I don't understand why this is better as a plugin than an include file (how I actually use it). I think plugin if I want access to structs not exposed through MQ2Data, or need C++ to code something that just doe...