yeah i notice the coding is similar to another piece that him and Crazy worked on the Auto Login which i have ripped and edited here to make it open source.
Code:
#NoTrayIcon
#include <GUIConstantsEX.au3>
#include <GUIConstants.au3>
#include <WindowsConstants.au3>
#include <Misc.au3>
$NOSBOT = GUICreate("NosLogin", 196, 465, 392, 148)
$MENU = GUICtrlCreateMenu("File")
$mnuFile = GUICtrlCreateMenuItem("About",$MENU)
$SEVER = GUICtrlCreateGroup("Sever", 8, 0, 180, 41)
$RADIO1 = GUICtrlCreateRadio("Server 1", 16, 16, 81, 17)
$RADIO2 = GUICtrlCreateRadio("Server 2", 110, 16, 81, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$CHANNEL = GUICtrlCreateGroup("Channel", 8, 48, 180, 105)
$RADIO5 = GUICtrlCreateRadio("Channel 1", 16, 96, 113, 17)
$RADIO4 = GUICtrlCreateRadio("Channel 2", 110, 80, 113, 17)
$RADIO6 = GUICtrlCreateRadio("Channel 3", 110, 112, 113, 17)
$RADIO7 = GUICtrlCreateRadio("Channel 4", 16, 128, 113, 17)
$RADIO3 = GUICtrlCreateRadio("Channel 5", 16, 64, 121, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$LOGIN = GUICtrlCreateGroup("Login", 8, 201, 180, 113)
$ID = GUICtrlCreateInput("", 70, 232, 110, 21)
$PW = GUICtrlCreateInput("", 70, 272, 110, 21)
$LABEL1 = GUICtrlCreateLabel("Username:", 16, 232, 50, 17)
$LABEL2 = GUICtrlCreateLabel("Password:", 16, 272, 50, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$START = GUICtrlCreateButton("START", 8, 376, 180, 65, 0)
$LABEL3 = GUICtrlCreateLabel(" AutExe Source Ripped by Blinko" & @crlf & " .::Original Coders::." & @Crlf & " Freaky && Crazy 4 Live", 8, 325, 196, 41)
$CHAR = GUICtrlCreateGroup("Char", 8, 160, 180, 41)
$RADIO8 = GUICtrlCreateRadio("Char 1", 16, 176, 49, 17)
$RADIO10 = GUICtrlCreateRadio("Char 2", 72, 176, 49, 17)
$RADIO11 = GUICtrlCreateRadio("Char 3", 136, 176, 65, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
While 1
$NMSG = GUIGetMsg()
Switch $NMSG
Case $mnuFile
MsgBox(0,"NosLogin", 'Thought this was a Tool worth sharing'&@crlf&'I have yet to see the source code anywhere and since i was able to decompile it'&@crlf&'I hope you can either use/learn from this Project'&@crlf&'Also note the Credit is Given on the Main GUI')
Case $GUI_EVENT_CLOSE
Exit
Case $START
$RADI1 = GUICtrlRead($RADIO1)
$RADI2 = GUICtrlRead($RADIO2)
$RADI3 = GUICtrlRead($RADIO3)
$RADI4 = GUICtrlRead($RADIO4)
$RADI5 = GUICtrlRead($RADIO5)
$RADI6 = GUICtrlRead($RADIO6)
$RADI7 = GUICtrlRead($RADIO7)
$RADI8 = GUICtrlRead($RADIO8)
$RADI10 = GUICtrlRead($RADIO10)
$RADI11 = GUICtrlRead($RADIO11)
$ID1 = GUICtrlRead($ID)
$PW1 = GUICtrlRead($PW)
WinActivate("Nostale", "")
Sleep(2000)
Send($ID1 & "{Tab}" & $PW1 & "{enter}")
If $RADI1 = 1 Then
MouseClick("left", 490, 362)
EndIf
If $RADI2 = 1 Then
MouseClick("left", 510, 340)
EndIf
Sleep(1000)
If $RADI3 = 1 Then
MouseClick("left", 734, 446)
EndIf
If $RADI4 = 1 Then
MouseClick("left", 775, 369)
EndIf
If $RADI5 = 1 Then
MouseClick("left", 750, 341)
EndIf
If $RADI6 = 1 Then
MouseClick("left", 740, 393)
EndIf
If $RADI7 = 1 Then
MouseClick("left", 746, 423)
EndIf
Sleep(2000)
If $RADI8 = 1 Then
MouseClick("left", 435, 80, 3)
EndIf
If $RADI10 = 1 Then
MouseClick("left", 621, 83, 3)
EndIf
If $RADI11 = 1 Then
MouseClick("left", 898, 80, 3)
EndIf
EndSwitch
WEnd