Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("M2 GM Helper by Höllenbestie", 307, 138, 192, 114)
$Label1 = GUICtrlCreateLabel("Wähle deine Klasse aus, um fortzufahren:", 32, 8, 247, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Button1 = GUICtrlCreateButton("Krieger", 8, 32, 75, 25, 0)
$Button2 = GUICtrlCreateButton("Ninja", 8, 64, 75, 25, 0)
$Button3 = GUICtrlCreateButton("Sura", 224, 32, 75, 25, 0)
$Button4 = GUICtrlCreateButton("Schamane", 224, 64, 75, 25, 0)
$Label2 = GUICtrlCreateLabel("by Höllenbestie from elitepvpers.com!", 64, 112, 172, 17)
GUICtrlSetBkColor(-1, 0xFF0000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd