Search found 114 matches

by dman
Tue Jul 26, 2005 10:57 am
Forum: MQ2::Help
Topic: Error in setting variable?
Replies: 7
Views: 3006

Only thing that it looks like to me is the double '--', try using just one minus sign in your formula, or instead of /vardata'ing the formula (which will fail silently) just /echo the statement and see what output you get. so /vardata RT Math.Calc[((${My.X}-1680)^2+(${My.Y}-3400)^2)^(1/2)/(4.5)] edi...
by dman
Wed Jul 20, 2005 10:20 am
Forum: MQ2::General
Topic: Computing the number of buff slots available
Replies: 8
Views: 11718

We have a macro help forum and rules for using it for a reason. People tend to get banned when they don't follow the rules.
by dman
Thu Jul 07, 2005 11:31 pm
Forum: MQ2::Bug Reports
Topic: First bug report....
Replies: 9
Views: 4294

[MQ2]MQ2CInspect Module Unloaded
[MQ2]MQ2SetSpell Module Unloaded
[MQ2]MQ2RWarp Module Unloaded
[MQ2]MQ2DoCrack Module Unloaded
First step is to only report bugs if you can reproduce them using vanilla mq2, last I checked, these don't come standard.
by dman
Wed Jul 06, 2005 12:35 am
Forum: MQ2::Help
Topic: UNABLE TO PARSE ERROR "E"
Replies: 3
Views: 1935

the ${Ini} Tlo will return a string, your attempted fix sets this string up into a numeric comparison which will fail. A better fix than comparing to null as the macro did, would be to give the Ini variable a default value it returns if the information is not available. The syntax is as follows: ${I...
by dman
Sun Jul 03, 2005 8:17 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Genbot v13.3.7 [Updated 04/19/05]
Replies: 272
Views: 180337

SirCodeAlot, they can be, but without reading through the entire set of code, I am not sure what the signifigance of the leading and trailing spaces in each of those examples could be. It may be nothing, but I believe the string tlo was used in those cases to delibrately add those spaces to remove f...
by dman
Sun Jul 03, 2005 8:06 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Genbot v13.3.7 [Updated 04/19/05]
Replies: 272
Views: 180337

Those /vardata lines need to be fixed as well Digital, the String at the beginning of them will parse out to be ${String} Edit: If I'm reading all these lines right, I only found 1 "misuse" of the Sting TLO, the rest of them use the String TLO to add spaces/dividers around a variable to ma...
by dman
Fri Nov 12, 2004 8:34 am
Forum: MQ2::Macros::Help
Topic: Small question about SpawnSearch
Replies: 34
Views: 12533

When I want to check if the nearest spawn is within a certain distance I usually use another filter in the spawn search, such as:

Code: Select all

/if (${NearestSpawn[1,npc radius 100 zradius 30].ID) /dothis
This will return the id of the first mob within a radius of 100, no further check is necessary.
by dman
Thu Nov 11, 2004 7:41 am
Forum: MQ2::Help
Topic: /MW2command Messages arne't showing up
Replies: 4
Views: 1629

no idea on your message from the compiler, but if you've noticed the names changing to MQ2 style then i'd think it is running correctly. Edit or delete your MQ2Chatwnd.ini in the release directory, I'm guessing the window is either showing up behind a ui element of your ui, or is offscreen.
by dman
Wed Nov 10, 2004 4:51 pm
Forum: MQ2::General
Topic: ITEMINFO Struct change w/ next patch.
Replies: 2
Views: 1888

Well, the good news is that the struct shouldn't need to be changed, as the No_Pet flag on items is already there. Mages found it out the hard way with the slow stick from chardock they have been using on their pets. SOE responded that it was their test item, and that more would come next patch.
by dman
Sun Nov 07, 2004 6:59 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Raid Healer v1.3 - Heal your raid (Updated: 11-8-04)
Replies: 35
Views: 8991

Lets say you are trying to heal RaidMember[x] who happens to be named Joe. /if ${Spawn[${Raid.Member[${r}]}].Type.NotEqual[Corpse]} The Spawn TLO when used searches and will return the nearest match to you it can find. In this case anyone standing closer to you than Joe with Joe as part of their nam...
by dman
Wed Nov 03, 2004 1:32 pm
Forum: MQ2::Macros::Snippets
Topic: DoCast - Item Swaping on certain spell casts
Replies: 8
Views: 4333

/declare c int outer /declare SpellHasteAmmount int outer 20 /declare SpellHasteList string outer S_Heal1|B_SD|B_Haste|B_Dex|B_Sta|B_AC|B_Str|B_HP|B_IOS|B_SOW|B_SV|B_Regen|B_ATK|P_Proc|P_Haste|P_Pet|P_Heal|S_Invis /for c 1 to ${SpellHasteAmmount} /if (${Me.Gem[${SpellSlot}].Name.Equal["${Strin...
by dman
Sun Oct 24, 2004 7:52 am
Forum: MQ2::Macros::Help
Topic: parseing tells?
Replies: 5
Views: 1691

or string.Arg[]
by dman
Mon Oct 18, 2004 12:07 pm
Forum: MQ2::Macros::Requests
Topic: Mage Class-Based Focus/Armour Summoning
Replies: 9
Views: 3094

We can't help you if you don't post what you have for a macro so far. You've been working on this since March, I'd expect at least something in the way of code in that time. You can also refer to this thread for the logic needed in the macro. It may be pre-parms help. but the thought process is the ...
by dman
Fri Oct 15, 2004 3:12 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Rogue Helper v6.0 [Complete Rogue Macro] (Updated: 10-26-04)
Replies: 917
Views: 396716

editted for ramblings so no actual content
by dman
Fri Oct 15, 2004 11:19 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Rogue Helper v6.0 [Complete Rogue Macro] (Updated: 10-26-04)
Replies: 917
Views: 396716

Have you considered using http://macroquest2.com/phpBB2/viewtopic.php?t=9603 for the aliases? While it would add another plugin that would be required, it seems to be a great concept.