Hallo,
dieses Thema ist dafür da, damit ihr eure eigenen AHK- Codeschnipsel vorstellt.
Damit andere Leute daraus lernen können oder es auch erweitern können.
Ich fang mal einfach mit einigen an:
kleines Passwort System
Code: kleines Passwort System
//oben im Script einfügen: password = breadfish123
InputBox,pass,Login, Bitte gebe den Passwort ein
If( pass <> password ) {
MsgBox Passwort falsch - Zugriff verweigert!
ExitApp
}
MsgBox Passwort korrekt - Zugriff erfolgreich!
Taschenrechner System (zusammen Arbeit mit einem Freund) (Benötigt wird eine API)
Code: Taschenrechner System (zusammen Arbeit mit einem Freund)
:?:/rechnen::
Suspend Permit
{
Zahl1 := PlayerInput("Zahl 1: ")
Aktion := PlayerInput("Aktion: ")
Zahl2 := PlayerInput("Zahl 2: ")
if (Aktion = "+")
{
StringSplit, calc, Aktion, +
calcresult := Round(Zahl1 + Zahl2, 3)
}
if (Aktion = "-")
{
StringSplit, calc, Aktion, -
calcresult := Round(Zahl1 - Zahl2, 3)
}
if (Aktion = "*")
{
StringSplit, calc, Aktion, *
calcresult := Round(Zahl1 * Zahl2, 3)
}
if (Aktion = "/")
{
StringSplit, calc, Aktion, /
calcresult := Round(Zahl1 / Zahl2, 3)
}
addChatMessage("{0078ff}[Keybinder]{CCCCCC}Das Ergebnis lautet: {01DF01}" . calcresult . "")
}
return
Alles anzeigen