The Wiki for Tale 5 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Difference between revisions of "User:Peshet/resin"

From ATITD5
Jump to navigationJump to search
m (Created page with "This macro was written by my in-game husband, Engine, in T4. It's a true time saver, thanks Engine!! AutoHotkey Macro To use, hold your mouse over the tree or cactus, then pres...")
 
m
 
Line 4: Line 4:
  
 
To use, hold your mouse over the tree or cactus, then press the ` key. You can change that to just about anything you want.
 
To use, hold your mouse over the tree or cactus, then press the ` key. You can change that to just about anything you want.
 
Other variables can be changed as needed.
 
 
 
For example, when I just want resins, not wood, I change it to:
 
<PRE>
 
Send {R}
 
Send {N}
 
Send {R}
 
</PRE>
 
  
  
Line 34: Line 24:
  
 
</pre>
 
</pre>
 +
 +
 +
Other variables can be changed as needed.
 +
 +
 +
For example, when I just want resins, not wood, I change it to:
 +
<PRE>
 +
Send {R}
 +
Send {N}
 +
Send {R}
 +
</PRE>
 +
For cactus sap I change it to:
 +
 +
Other variables can be changed as needed.
 +
 +
For example, when I just want resins, not wood, I change it to:
 +
<PRE>
 +
Send {G}
 +
Send {G}
 +
Send {G}
 +
Send {I}
 +
</PRE>
 +
I usually check the cactus after the macro. Sometimes there is more than just the 3 sap.

Latest revision as of 00:57, 30 November 2010

This macro was written by my in-game husband, Engine, in T4. It's a true time saver, thanks Engine!!

AutoHotkey Macro

To use, hold your mouse over the tree or cactus, then press the ` key. You can change that to just about anything you want.


This macro will gather the wood, nick the tree, and collect the resin.


#singleinstance force

;;tag tree
`::

Send {G}
Send {N}
Send {R}

return

;;Exit app
^x::ExitApp  ; Assign a hotkey to terminate this script.


Other variables can be changed as needed.


For example, when I just want resins, not wood, I change it to:

Send {R}
Send {N}
Send {R}

For cactus sap I change it to:

Other variables can be changed as needed.

For example, when I just want resins, not wood, I change it to:

Send {G}
Send {G}
Send {G}
Send {I}

I usually check the cactus after the macro. Sometimes there is more than just the 3 sap.