ini = %A_MyDocuments%\NineDemons\Keybinder.ini
If(!FileExist(ini))
{
IniWrite, 0, %ini%, Einstellungen, Passwort
IniWrite, 0, %ini%, Daten, Kills
IniWrite, 0, %ini%, Daten, Deaths
IniWrite, 0, %ini%, Daten, KillSpruch
IniWrite, 0, %ini%, Daten, DeathSpruch
IniWrite, 0, %ini%, Daten, PickSpruch
}
IniRead, autologinpasswort, %ini%, Einstellungen, Passwort
IniRead, kills, %ini%, Daten, Kills
IniRead, deaths, %ini%, Daten, Deaths
IniRead, kspruch, %ini%, Daten, KillSpruch
IniRead, dspruch, %ini%, Daten, DeathSpruch
IniRead, pspruch, %ini%, Daten, PickSpruch
Gui, Add, Picture, x-8 y0 w860 h570 , C:\Users\Marcel\Desktop\Keybinder\DineDemons\background.png
if(%autologinpasswort% == 0)
{
Gui, Add, Edit, x2 y130 w310 h20, Hier Passwort eingeben!
} else {
Gui, Add, Edit, x2 y130 w310 h20, %autologinpasswort%
}
Gui, Add, Button, x2 y170 w310 h30 gSavePasswort, Speichern
Gui, Add, Edit, x2 y320 w310 h20 , Killspruch eingeben!
Gui, Add, Edit, x2 y400 w310 h20 , Deathspruch eingeben!
Gui, Add, Edit, x2 y480 w310 h20 , Pickwaffen Spruch eingeben!
Gui, Add, Button, x2 y520 w310 h30 gSaveSpruche, Sprüche Speichern
Gui, Add, Button, x332 y290 w510 h50 , Button ;SERVER
Gui, Add, Button, x332 y350 w510 h50 , Button ;TEAMSPEAK
Gui, Add, Button, x332 y410 w510 h50 , Button ;FORUM
Gui, Add, Button, x332 y470 w510 h50 , Button ;UCP
Gui, Show, w854 h572, Untitled GUI
return
SavePasswort:
return
SaveSpruche:
return
GuiClose:
ExitApp
Alles anzeigen