The Wiki for Tale 7 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:Petrius"
Line 40: | Line 40: | ||
| | | | ||
|} | |} | ||
+ | |||
+ | A sikuliX script that I called SissuesGarlicGold | ||
+ | |||
+ | Settings.MoveMouseDelay = 0.0 | ||
+ | |||
+ | Running = True | ||
+ | |||
+ | def DoIt(event): | ||
+ | global Running | ||
+ | Running = False | ||
+ | |||
+ | Env.addHotkey(Key.F1, KeyModifier.CTRL, DoIt) | ||
+ | |||
+ | atitd = switchApp("A Tale in the Desert") | ||
+ | |||
+ | while Running and exists( ): | ||
+ | click( ) | ||
+ | |||
+ | if Running and exists( ): | ||
+ | click( ) | ||
+ | click( ) | ||
+ | click( ) | ||
+ | wait(1.0) | ||
+ | if Running and exists( ): | ||
+ | click( ) | ||
+ | while Running and not exists( ): | ||
+ | click( ) | ||
+ | if Running and exists( ): | ||
+ | click( ) | ||
+ | if Running and exists( ): | ||
+ | click( ) | ||
+ | while Running and not exists( ): | ||
+ | wait(1.0) | ||
+ | else: | ||
+ | click( ) | ||
+ | if Running and exists( ): | ||
+ | click( ) | ||
+ | |||
+ | Running = False | ||
+ | exit() |
Revision as of 18:44, 15 October 2016
A resident of Old Egypt.
A member of ALOE (Allied Labs of Old Egypt).
Using sikulix for Macros, however, I have not yet put any of my scripts on the macros pages.
These are the colors that are made at the Raeli Oven located at 1019, 7115 which belongs to the Delta Guild. Colors from light to dark, from left to right and then down to the next row.
white | snow | white smoke | sea shell | linen |
antique white | eggshell white | gainsboro | light grey | wheat |
silver | tan | feldspar | peru | sienna |
burnt umber | dark sienna | seal brown | licorice | smokey black |
black |
A sikuliX script that I called SissuesGarlicGold
Settings.MoveMouseDelay = 0.0
Running = True
def DoIt(event):
global Running Running = False
Env.addHotkey(Key.F1, KeyModifier.CTRL, DoIt)
atitd = switchApp("A Tale in the Desert")
while Running and exists( ):
click( ) if Running and exists( ): click( ) click( ) click( ) wait(1.0) if Running and exists( ): click( ) while Running and not exists( ): click( ) if Running and exists( ): click( ) if Running and exists( ): click( ) while Running and not exists( ): wait(1.0) else: click( ) if Running and exists( ): click( )
Running = False exit()