/keypress help

Need help with a macro you are writing? Ask here!

Moderator: MacroQuest Developers

omper
a ghoul
a ghoul
Posts: 110
Joined: Sat Dec 06, 2003 10:46 pm

/keypress help

Post by omper » Sun May 30, 2004 11:39 am

I am looking for a good way to stop autofollow..

Currently i am doing this.. and recently it has stoped working.. since last patch

Code: Select all

/keypress esc
	/keypress S hold
	/keypress S
	/keypress A hold
	/keypress A
and the S and A are left and right.. FYI.. but i am looking for a better way to do this.. its just used to break the autofollow command.. and one more

Code: Select all

Sub Event_TOFAR 
    
	/face nolook fast
	/keypress W hold
	/keypress W
	/keypress W hold
	/keypress W
	
/return   
this is used to get a little closer to the target.. W is forward.. I used forward and gave same result..

Let me know.. tks..

OMper

JGC84
a ghoul
a ghoul
Posts: 116
Joined: Sat Nov 29, 2003 2:51 am

Post by JGC84 » Sun May 30, 2004 2:43 pm

if your looking to just break autofollow using your current style couldnt you just do?

Code: Select all

/keypress [backwardkey] hold
/keypress [backwardkey]
that just step you back from who your autofollowing and break af
ACK! I think I blew it up....

I dont think your allowed to talk about this outside of a "free speech zone" anymore.

User avatar
ieatacid
Developer
Developer
Posts: 2727
Joined: Wed Sep 03, 2003 7:44 pm

Post by ieatacid » Sun May 30, 2004 3:25 pm

Code: Select all

/keypress back hold
/keypress back

Rusty~
a hill giant
a hill giant
Posts: 244
Joined: Wed Apr 14, 2004 2:55 pm

Post by Rusty~ » Sun May 30, 2004 8:05 pm

if you're talking about EQ built in auto follow, then you should only need one line:

Code: Select all

/keypress right
and to get closer you'd wanna put in something like this:

Code: Select all

/face fast nolook
/keypress forward hold
/delay 1s ${Target.Distance3D}<[color=red]some value[/color]
/keypress forward
replace the stuff in red with the minimum distance you want to be from target