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.

Code

From ATITD5
Revision as of 04:59, 24 October 2010 by Takhetu (talk | contribs) (Replaced content with "<pre> Loop 5 { FirstStone := A_Index NumToRun1 := 6-A_Index ;Select Stone A_Index (code) (shortcut A) Loop, %NumToRun% { SecondStone := FirstStone+A_Index NuumToRun2...")
Jump to navigationJump to search
Loop 5
{
	FirstStone := A_Index
	NumToRun1 := 6-A_Index
	;Select Stone A_Index (code) (shortcut A)
	Loop, %NumToRun%
	{
		SecondStone := FirstStone+A_Index
		NuumToRun2 := 5-A_Index 
		;Select Stone B_Index (code) (shortcut A)
		Loop, %NumToRun2%
		[
			ThirdStone := SecondStone+A_Index
			;Select Stone B_Index (code) (shortcut S)
			;Check if popup opened and close it
		}
	}
}