-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGFBotGUI.au3
65 lines (62 loc) · 3.32 KB
/
GFBotGUI.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
$Form1_1 = GUICreate(IniRead($settingsFile,"Settings","WindowTitle","GFBot"), 354, 320, 260, 176)
GUISetIcon("favicon.ico")
GUISetBkColor(0xFFFFFF)
$Tab1 = GUICtrlCreateTab(0, 0, 353, 300, BitOR($TCS_VERTICAL,$TCS_FIXEDWIDTH))
GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
$TabSheet1 = GUICtrlCreateTabItem("Status")
$LabelVersion = GUICtrlCreateLabel($VERSION, 300, 10, 50, 16)
$Group1 = GUICtrlCreateGroup("Character", 35, 21, 306, 105)
GUICtrlSetFont(-1, 9, 800, 0, "MS Gothic")
$Label1 = GUICtrlCreateLabel("Name:", 46, 39, 39, 16)
$Label3 = GUICtrlCreateLabel("Lv:", 173, 37, 25, 16)
$Label4 = GUICtrlCreateLabel("HP:", 46, 56, 25, 16)
$Label5 = GUICtrlCreateLabel("MP:", 46, 71, 25, 16)
$Label6 = GUICtrlCreateLabel("Charge:", 46, 88, 53, 16)
$Label7 = GUICtrlCreateLabel("Exp:", 173, 56, 32, 16)
$expProgress = GUICtrlCreateProgress(201, 56, 124, 10)
GUICtrlSetColor(-1, 0x008000)
$hpProgress = GUICtrlCreateProgress(72, 58, 85, 8)
GUICtrlSetColor(-1, 0xFF0000)
$mpProgress = GUICtrlCreateProgress(72, 73, 85, 8)
$chargeLabel = GUICtrlCreateLabel("0", 101, 89, 15, 16)
$nameLabel = GUICtrlCreateLabel("----", 85, 38, 45, 16)
$levelLabel = GUICtrlCreateLabel("0", 201, 38, 15, 16)
$Label14 = GUICtrlCreateLabel("Exp/hr:", 173, 71, 53, 16)
$LabelSZ = GUICtrlCreateLabel("Zone:", 173, 88, 50, 16)
$zoneLabel = GUICtrlCreateLabel("", 205, 88, 100, 16)
;$LabelNPC = GUICtrlCreateLabel("NPC:", 260, 88, 40, 16)
;$npcLabel = GUICtrlCreateLabel("[Off]", 288, 88, 33, 16)
$Label15 = GUICtrlCreateLabel("Status:", 46, 104, 53, 16)
$statusLabel = GUICtrlCreateLabel("----", 102, 103, 150, 16)
$ephLabel = GUICtrlCreateLabel("0", 220, 69, 30, 16)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("Informations/Statistics", 35, 141, 306, 105)
GUICtrlSetFont(-1, 9, 800, 0, "MS Gothic")
$Label8 = GUICtrlCreateLabel("Waypoints:", 47, 160, 74, 16)
$Label2 = GUICtrlCreateLabel("Elapsed Time:", 47, 175, 95, 16)
$Label9 = GUICtrlCreateLabel("Kills:", 231, 160, 46, 16)
$Label10 = GUICtrlCreateLabel("Time to Level:", 47, 191, 102, 16)
$Label11 = GUICtrlCreateLabel("Kills/hr:", 231, 175, 67, 16)
$Label12 = GUICtrlCreateLabel("Gold Obtained:", 47, 206, 102, 16)
$Label13 = GUICtrlCreateLabel("Gold/hr:", 47, 221, 60, 16)
$waypointLabel = GUICtrlCreateLabel("0", 105, 160, 30, 16)
$etLabel = GUICtrlCreateLabel("----", 115, 175, 80, 16)
$ttlLabel = GUICtrlCreateLabel("----", 120, 191, 80, 16)
$goldLabel = GUICtrlCreateLabel("0", 120, 206, 80, 16)
$gphLabel = GUICtrlCreateLabel("0", 105, 221, 80, 16)
$killsLabel = GUICtrlCreateLabel("0", 258, 160, 30, 16)
$kphLabel = GUICtrlCreateLabel("0", 273, 175, 30, 16)
$LabelR = GUICtrlCreateLabel("Range:", 231, 190, 40, 16)
$rangeLabel = GUICtrlCreateLabel("0", 273, 190, 33, 16)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$startStopButton = GUICtrlCreateButton("Start", 256, 250, 81, 33, $WS_GROUP)
GUICtrlSetFont(-1, 9, 800, 0, "MS Gothic")
$Label16 = GUICtrlCreateLabel("For help click below: ", 40, 250, 158, 16)
GUICtrlSetFont(-1, 9, 800, 0, "MS Gothic")
$Label18 = GUICtrlCreateLabel("Grand Fantasia Bot Guide", 40, 265, 186, 16)
GUICtrlSetFont(-1, 9, 800, 4, "MS Gothic")
GUICtrlSetColor(-1, 0x0000FF)
$infoStatus = _GUICtrlStatusBar_Create($Form1_1)
_GUICtrlStatusBar_SetMinHeight($infoStatus, 22)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###