Search found 4 matches

by sumdumgeek
Sun May 23, 2004 8:21 am
Forum: MQ2::Macros::Snippets
Topic: Turn.inc - Human style turning (Data/DataVars Compatible)
Replies: 3
Views: 2239

I suspect that the reason you sometimes do 360s is that the pressed key never gets released until your target is in the -7..7 range. If you overshoot, it'll press the other arrow, but it doesn't release the first one. What I did to the non-Datavars version was in the else /if sections, where it's se...
by sumdumgeek
Fri Mar 26, 2004 3:40 pm
Forum: Macro Help (MQ1)
Topic: Mezzing Tabble
Replies: 4
Views: 1198

What I would do is build an array of mobids and a set of timers, one per array slot. Mez the mob, set the corresponding timer. Timer runs out, mobid in array is still valid, time to remez. Don't want to mez that one anymore, remove it from the array.
by sumdumgeek
Fri Mar 26, 2004 3:25 pm
Forum: Macro Help (MQ1)
Topic: Movebehind and checking agro
Replies: 4
Views: 1344

I've been doing something like /varset MyID $char(id) /assist /if n $target(id)==@MyID { ... } I agree, it's inelegant. Unfortunately, I suspect the client doesn't get told "the target of your target is" normally (some of the new leadership AAs would force it, though); it just tells the se...
by sumdumgeek
Fri Mar 26, 2004 1:11 am
Forum: Macro Depot (MQ1)
Topic: Turn.inc - Reliable human-style turning for the masses
Replies: 8
Views: 6452

It looks like what's happening is once it decides it needs to turn left, it just keeps going left til it winds up within +- seven degrees. What it could do instead is, if it's turned left too far and should be turning right now, stop turning left, and similar for the other side. Also, the test for >...