Что нового

Анализатор для рулетки

GreenAxe

Новичок
Сообщения
3
Репутация
0
Всем привет.
Хочу сразу сказать это не Бот :smile:

Недавно начал изучать AutoIt :IL_AutoIt_1:, Пытаюсь разложить по полочкам с чего начать но знаний не хватает :(

Прошу помочь в вычисления "Четных чисел" А дальше я сам , ориентируясь по коду добавлю "выпадении 4 чисел меньших 18" и тд...
Как это выглядит в моем понимании
http://img706.imageshack.us/img706/4109/23677855.png

Создал форму в Kod'e
Код:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

$Form1_1 = GUICreate("Roulette Greed", 418, 486, 261, 113)
$Input1 = GUICtrlCreateInput("Input1", 8, 8, 49, 21)
$Button1 = GUICtrlCreateButton("Ок", 64, 8, 41, 17)
$Edit1 = GUICtrlCreateEdit("", 8, 64, 57, 361)
GUICtrlSetData(-1, "Edit1")
$Edit2 = GUICtrlCreateEdit("", 88, 56, 329, 361)
GUICtrlSetData(-1, "Edit2")
$Button2 = GUICtrlCreateButton("Exit", 360, 8, 57, 17)
$Button3 = GUICtrlCreateButton(".ect", 360, 32, 57, 17)
$Button4 = GUICtrlCreateButton("Clear", 192, 24, 51, 25)
$Group1 = GUICtrlCreateGroup("Status", 0, 432, 417, 49)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit

	EndSwitch
WEnd


Надеюсь на вашу помощь.
 
Верх