Here is all of my code so far
$run = True
$Main = GUICreate("Adventure Game", 250, 100)
$character_setup = GUICtrlCreateInput("Replace this text with you adventurer's name", 10, 10, 230, 20)
$cheatcodestring = ""
$start = GUICtrlCreateButton("Start the Adventure!", 10, 40, 230, 30)
GUISetState(@SW_SHOW, $main)
while $run = True
Switch GUIGetMsg()
Case - 3
Exit
EndSwitch
; Then the code for recognizing the cheatcode goes here
if $cheatcodestring = "super" Then
EndIf
WEnd