Last active
February 9, 2026 14:03
-
-
Save leshikus/f5411998192b82a215fe628f2e468376 to your computer and use it in GitHub Desktop.
Trade seeds for merchant leveling in Dwarf Fortress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Global $df_window = "Dwarf Fortress" | |
| Global $sleep_time = 1000 | |
| AutoItSetOption("SendKeyDelay", 150) | |
| AutoItSetOption("MouseClickDownDelay", 20) | |
| ; use standard scale | |
| ; center on your broker | |
| For $i = 1 To 20 | |
| WinWaitActive($df_window) | |
| Sleep($sleep_time) | |
| MouseClick("right", 552, 600, 2, 0) | |
| Sleep($sleep_time) | |
| MouseClick("left", 552, 600, 2, 0) | |
| Sleep($sleep_time) | |
| MouseClick("left", 972, 112, 1, 0) | |
| Sleep($sleep_time) | |
| MouseClick("left", 1024, 248, 1, 0) | |
| Sleep($sleep_time) | |
| MouseClick("left", 240, 156, 1, 0) | |
| ;MouseClick("left", 240, 196, 1, 0) | |
| Sleep($sleep_time) | |
| Send("^t") | |
| Sleep($sleep_time) | |
| Send("see{ENTER}") | |
| Sleep($sleep_time) | |
| MouseMove(800, 242, 0) | |
| MouseClick("left") | |
| Sleep($sleep_time) | |
| Send("see{ENTER}{DOWN}{ENTER}") | |
| Sleep($sleep_time) | |
| MouseClick("right", 840, 986, 1, 0) | |
| Sleep($sleep_time) | |
| MouseClick("left", 840, 986, 1, 0) | |
| Sleep($sleep_time) | |
| Send("{ENTER}") | |
| Next |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment