Участник:Sat360/Скрипт Раскопок 3х3: различия между версиями
Материал из Dwarf Fortress Wiki
Перейти к навигацииПерейти к поиску
Sat360 (обсуждение | вклад) (Создана новая страница размером Скрипт для AutoHotKey для быстрой разметки территории под исследовательское ко...) |
GeloMor (обсуждение | вклад) (Удалил ненужную категорию) |
||
Строка 62: | Строка 62: | ||
return | return | ||
</pre> | </pre> | ||
Текущая версия от 08:10, 30 октября 2020
Скрипт для AutoHotKey для быстрой разметки территории под исследовательское копание. Подробности - Exploratory mining#Mine shafts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; mineshaft.ahk ; ; this is an ahk script to place exploratory mine shafts. ; ; press d and place the cursor ; ; in the top left corner of the area to be explored ; ; then use ctrl+shift+s to run ; ; ; ; NOTE: ; ; change variables x, y and depth to suit your conditions ; ; Author: StrawberryBunny ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ^+s:: x = 3 y = 3 depth = 15 Loop %x% { Loop %y% { Loop %depth% { Send i Send {Enter} Send {Enter} Send +. Sleep 200 } Loop %depth% { Send +, Sleep 200 } Send {Down} Sleep 200 Send {Down} Sleep 200 Send {Down} Sleep 200 } Send {Right} Sleep 200 Send {Right} Sleep 200 Send {Right} Sleep 200 Loop %y% { Send {Up} Sleep 200 Send {Up} Sleep 200 Send {Up} Sleep 200 } } return