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?

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