Search found 5 matches

by MikeDVB
Thu May 20, 2004 12:52 pm
Forum: Macro Depot (MQ1)
Topic: follow.mac *New PARM Version*
Replies: 6
Views: 7314

Fixed for latest MQ2Data | /macro follow <distance> Sub Main /declare TheDistance outer /varset TheDistance ${Param0} /if (!${Defined[Param0]}) /varset TheDistance 10 :Loop /if (${Target.Distance}>${TheDistance}) /keypress forward hold /if (${Target.Distance}<${TheDistance}) /keypress forward /if ($...
by MikeDVB
Thu May 20, 2004 3:46 am
Forum: MQ2::Bug Reports
Topic: /who not fixed in the latest zip
Replies: 9
Views: 2234

It'd be nice to have it in the INI so that you can do innocent until proven guilty or guilty until proven innocent.

Like EQWHO=0
EQWHO=1
...

Just a thought
by MikeDVB
Tue May 04, 2004 2:46 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: rogue.mac - AutoRogue v. 2.0l 5-1-2004
Replies: 44
Views: 18072

I guess you could have it try to get behind for like 3 seconds, and if it can't make it settle for being beside. You can get beside any walled mob just not behind. And have it try periodically or if it detects it's walled have it reduce the distance to target to like 3 or something, so unless it's p...
by MikeDVB
Sun Apr 25, 2004 8:56 pm
Forum: Macro Depot (MQ1)
Topic: follow.mac *New PARM Version*
Replies: 6
Views: 7314

| /macro follow <distance> Sub Main /declare TheDistance global /varset TheDistance @Param0 /if (!${Defined[Param0]}) /varset TheDistance 10 :Loop /if (${Target.Distance}>@TheDistance) /keypress forward hold /if (${Target.Distance}<@TheDistance) /keypress forward /if (${Target.Distance}<=${Math.Cal...
by MikeDVB
Tue Apr 13, 2004 1:33 pm
Forum: Macro Depot (MQ1)
Topic: batwing.mac (Batwing quest macro)
Replies: 11
Views: 5394

I made this code a little bit more failsafe and a bit faster... At least it worked for me =) Without a delay hard coded in for the NPC trader window to show up sometimes it misses the first item. But very rare when you are the only one in the zone like Felwithe. #turbo Sub Main /declare l0 local :Lo...