Участник:Sat360/Скрипт Раскопок 3х3

Материал из Dwarf Fortress Wiki
Перейти к навигацииПерейти к поиску

Скрипт для 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