Hey, wie mach ich das er per AHK befehl dies in die PHP Datei schreibt?...
Code
Suspend Permit
if(Chat != 1){
AddChatMessage("")
return
}
if(chatBlock == 1){
AddChatMessage("")
}else{
text := PlayerInput("Deine Nachricht: ")
if(text != "" && strlen(text) < 129){
chatBlock := 1
SetTimer, ChatBlock, 2100
StringReplace, text, text, ä, [a], All
StringReplace, text, text, Ä, [ag], All
StringReplace, text, text, ü, [u], All
StringReplace, text, text, Ü, [ug], All
StringReplace, text, text, ö, [o], All
StringReplace, text, text, Ö, [og], All
StringReplace, text, text, ß, [ss], All
StringReplace, text, text, °, [grad], All
StringReplace, text, text, +, [plus], All
StringReplace, text, text, &, [and], All
url = www.xxxx.de/Keybinderchat.php?key=%secureKey%&name=%userName%&text=%text%
result := ""
UrlDownloadToVar(url, result)
if(result == 0){
AddChatMessage("")
}else if(InStr(result, "Du bist noch")){
AddChatMessage(result)
}
}
}
return
Alles anzeigen
Ich weiß nicht wie ich das machen soll.