Hallo,
ich habe hier ein Script aus einem WoW forum. Es soll in mehreren wow clienten automatisiert tasten senden (1,2,F7,Leertaste). Leider funktioniert das bei mir nicht da dass script irgendwie nicht startet. Ich lade/editiere das script klicke auf reload und F9 zum starten aber nichts passiert. Hier mal das srctipt und ich hoffe jemand kann mir helfen.
WinGet, WowWinId, List, World of Warcraft #NoEnv #HotkeyInterval -1 #MaxHotkeysPerInterval 99999999999999999 #MaxThreadsPerHotkey 999999999999 #MaxThreadsBuffer on #Persistent #SingleInstance Force Thread, priority, 0 Thread, interrupt, 0 SetKeyDelay -1,-1,-1 SetBatchLines -1 SetWinDelay -1 SetControlDelay -1 SetMouseDelay -1 SendMode Input Process Priority,,High ClonesPush(strKeys) { global WowWinId1 global WowWinId2 global WowWinId3 global WowWinId4 global WowWinId5 global WowWinId6 global WowWinId7 global WowWinId8 IfWinNotActive, ahk_id %WowWinId1% ControlSend, , %strKeys%, ahk_id %WowWinId1% IfWinNotActive, ahk_id %WowWinId2% ControlSend, , %strKeys%, ahk_id %WowWinId2% IfWinNotActive, ahk_id %WowWinId3% ControlSend, , %strKeys%, ahk_id %WowWinId3% IfWinNotActive, ahk_id %WowWinId4% ControlSend, , %strKeys%, ahk_id %WowWinId4% IfWinNotActive, ahk_id %WowWinId5% ControlSend, , %strKeys%, ahk_id %WowWinId5% IfWinNotActive, ahk_id %WowWinId6% ControlSend, , %strKeys%, ahk_id %WowWinId6% IfWinNotActive, ahk_id %WowWinId7% ControlSend, , %strKeys%, ahk_id %WowWinId7% IfWinNotActive, ahk_id %WowWinId8% ControlSend, , %strKeys%, ahk_id %WowWinId8% } ClonesPush("{Space}") f8::Pause *~$f9:: { toggle:=!toggle while, toggle { Loop, 78 { ClonesPush("{1}") sleep 600 } Loop, 50 { ClonesPush("{f7}") sleep 100 ClonesPush("{2}") sleep 100 } } } return