dumblid Posted February 9, 2022 Posted February 9, 2022 Hello, first of all I want to say sorry if this dont belong here or I cant make this kind of request. So, I dont know anything about making a script. I tried googling how can I do it but none of the answers I found worked for me so Im here asking. Basically I play a mmorpg game that has skills wich I keybind but some of them are chain skills meaning for example I would have to press 1, 1, 1, 1 to do the full chain of skills I cant just hold 1 since it wont do it, but long time ago a friend gave me a script for AHK wich made it so if I keep holding 1 it would look as I was pressing 1 multiple times real fast. But now the game implemented gameguard wich wont let me use AHK anymore and someone told me I should try autoit to see if it works. So what I am asking is is it possible to do some kind of script like I previously had on AutoIt? I leave the script that I was using on AHK maybe it helps understand what I mean expandcollapse popup#MaxHotkeysPerInterval 500 !z::suspend $1:: Loop { if not GetKeyState("1", "P") break Send {Blind}{1} } return $2:: Loop { if not GetKeyState("2", "P") break Send {Blind}{2} } return $e:: Loop { if not GetKeyState("e", "P") break Send {Blind}{e} } return $r:: Loop { if not GetKeyState("r", "P") break Send {Blind}{r} } return and it repeats for every keybind that I need. Alt+z suspend the script so if i need to type into chat it wont be like 1111111 and it be just one time 1. I dont know if that makes sense. Im not asking to redo the script because I dont know if it takes too much time, just guide me in the right direction what i should be looking for and i try to figure out myself how to do it. Thanks in advance
Developers Jos Posted February 9, 2022 Developers Posted February 9, 2022 Welcome to the AutoIt forum. Unfortunately you appear to have missed the Forum rules on your way in. Please read them now - particularly the bit about not discussing game automation - and then you will understand why you will get no help and this thread will now be locked. See you soon with a legitimate question I hope. The Moderation team SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts