Help - Search - Members - Calendar
Full Version: gw please look at my macro
AC Tools Everything Macro > AC Tool Macros > Macro Development
stormeye16
ok so i started using actool today and ive run into a prob

here is my macro

SetActiveWindow guild wars
While 1=1
Keys {7}
Delay 62000
Keys {c}
Delay 1000
Keys {3}
Delay 1000
End

~~~~~~~~~~~~~~~~~~~~~~~
ok so i got c and 2 to work perf but 7 is an enchant that want to
re apply before it runs out how do i get the enchant to re apply
while c and 3 run as usual?
PS I TRIED ON MY OWN FIRST!
Bear
QUOTE(stormeye16 @ Aug 17 2009, 01:35 AM) *
ok so i started using actool today and ive run into a prob

ok so i got c and 2 to work perf but 7 is an enchant that want to
re apply before it runs out how do i get the enchant to re apply
while c and 3 run as usual?
PS I TRIED ON MY OWN FIRST!


What type of Character is this used for? Ranger/Monk? tongue.gif
Guild Wars I have, never thought of using a macro for it.

Your the second person i've noticed that has tried to Encase the Keys inside {}'s.
QUOTE(From the Help File:)
Keys

Description
Sends one or more keystrokes to Asheron's Call

Parameters
Any valid keyboard keys (A-Z, 0-9, etc). Special keys are listed under "Special Keystrokes" in the Commands and Macros Treeview. Shift is simulated with a ~ and Control with a ^.

Example
Keys 1
Keys 2
Keys {F1}
Keys {ENTER}

Keys ~1 // This will display a ! since it is shift 1

Only the Special keys like Function Keys and Return are encased in {}'s

CODE

SetActiveWindow guild wars
Constants
Enchant = 62000
Enc_Delay = 0
End

Procedure Buff when {ElapsedMSec} > $Enc_Delay
Keys 7
Compute $Enc_Delay = {ElapsedMSec} + $Enchant
End

Call Buff

While 1=1
ProcessMessages
Keys c
Delay 1000
Keys 3
Delay 1000
End
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.