Dragonbreath wrote:
So the "attention"part shows up. in each of the parentheses with enter in them, should i type in some hotkey combination?? or should it all be showin up??
If you copy and paste the code directly, it should work.
Send, {Enter} means "press and release enter", whereas
Send, Enter would mean "type the word 'Enter'". Also note there should only be one line from "Send," on to "ONLY*" (at the end.)
To make it more readable, I suggest using a continuation section:
Code:
Enter::
Send,
( ; continuation section
Send,---ATTENTION---
*WARNING* Mess Up Others Stunts = Kick
*WARNING* Attack The Black Warthog = Kick
*BLUE TEAM = STUNTS*
*RED TEAM = {{}OD{}}TRYOUTS ONLY*
)
return
This should be the same as:
Code:
Send,---ATTENTION---`n*WARNING*...etc.
(`n is replaced by AutoHotkey with a newline character, which does the same as {Enter}.)