Search found 10 matches

by Dark_Lord_X
Mon Oct 25, 2004 6:15 pm
Forum: MQ2::Macros::Help
Topic: Suggestions please - necro mac
Replies: 4
Views: 1626

#Event FDFailed "|${Me}| has fallen to the ground#*#" then have the Event_FDFailed set variable to true, on, or whatever. this is how I do it. Sub Event_FDFailed /varset FDFailedFlag 1 /return the actual FD routine should be called everytime you want to fd. /call Feign 120 /if (!${Target....
by Dark_Lord_X
Sun Oct 24, 2004 4:28 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: AFCleric.mac - Cleric automation macro (updated Aug 24th)
Replies: 421
Views: 175351

/call Cast "wtfever" CheckForArb

Will run the sub while it casts.

Have CheckForArb sub check for conditions to interrupt and use DA. Best way I can think of.
by Dark_Lord_X
Sun Oct 24, 2004 3:38 pm
Forum: MQ2::Macros::Snippets
Topic: Loot Nearest Corpse
Replies: 17
Views: 12499

Jboots = 135
by Dark_Lord_X
Sun Oct 24, 2004 2:04 am
Forum: Games::EQ2
Topic: Respect
Replies: 19
Views: 13353

hahahahahahahaha...right....!
by Dark_Lord_X
Sun Oct 24, 2004 1:59 am
Forum: MQ2::Macros::Help
Topic: Help with code...
Replies: 8
Views: 2075

you can set timers to tenths of a second, seconds, or minutes.
by Dark_Lord_X
Fri Oct 22, 2004 5:09 am
Forum: MQ2::Macros::Help
Topic: Code Snippet: How can I make this work better? BUFF PHASE
Replies: 5
Views: 1922

If this helps you at all, heres how I have my buff routine in one of my necro macros. Sub BuffSelf /declare b int local /echo Notify: Checking buff status and rebuffing. /target myself /if (${Me.Buff[${LichBuff}].Duration} < 50) /call Cast "${LichBuff}" gem8 20s /if (${Me.Buff[${RuneBuff}]...
by Dark_Lord_X
Sun Oct 03, 2004 6:25 pm
Forum: MQ2::General
Topic: New patch
Replies: 19
Views: 7825

rofl ..............
by Dark_Lord_X
Sat Oct 02, 2004 3:21 pm
Forum: MQ2::Macros::Help
Topic: Target by loc problem
Replies: 5
Views: 1353

The 1 to 9 is order of the pulls. I thought this would check them in order and if one is found return to the main loop to be pulled. This would also check for and target any respawn if the 9 mobs arent all dead which is fine as they dont add and are all approximately the same distance away from my H...
by Dark_Lord_X
Sat Oct 02, 2004 2:53 am
Forum: MQ2::Macros::Help
Topic: Target by loc problem
Replies: 5
Views: 1353

/for t 1 to 9 /if (${Spawn[loc ${Spawn${t}X} ${Spawn${t}Y} npc radius 5]}) { /target ${Spawn[loc ${Spawn${t}X} ${Spawn${t}Y} npc radius 5]} /varset MobID ${Target.ID} /echo Target Aquired: > ${Target.CleanName} ${Target.ID} < /return } /next t so that would give me the spawn within 5 units of that ...
by Dark_Lord_X
Sat Oct 02, 2004 2:36 am
Forum: MQ2::Macros::Help
Topic: Target by loc problem
Replies: 5
Views: 1353

Target by loc problem

Anyone else notice that sometimes a static spawn will have a slightly different loc when respawned and therefor targetting by loc wont work? Ex: First Spawn is 301.88 570.41 Ex: Next Spawn is 302.04 570.30 So if you have it set to target 301, 570 it wont work the next spawn. I was thinking I could m...