Breakfast Kid's Forum Info |
Joined: |
05-10-2022 |
Last Visit: |
Today, 04:23 AM |
Total Posts: |
31 (0.05 posts per day | 0.54 percent of total posts)
(Find All Posts)
|
Total Threads: |
7 (0.01 threads per day | 0.89 percent of total threads)
(Find All Threads)
|
Time Spent Online: |
2 Weeks, 2 Days, 2 Hours |
Members Referred: |
0 |
Total Likes Received: |
15 (0.03 per day | 1.1 percent of total 1367)
(Find All Threads Liked For — Find All Posts Liked For)
|
Total Likes Given: |
0 (0 per day | 0 percent of total 1367)
|
Reputation: |
17
[Details] |
|
|
Breakfast Kid's Most Liked Post |
Post Subject |
Post Date/Time |
Numbers of Likes |
Spaming keys with Autohotkey~ |
05-10-2022, 06:00 PM |
4 |
Thread Subject |
Forum Name |
Spaming keys with Autohotkey~ |
Guides
<img src="https://brave-ro.com/forum/images/icons/miscguide.gif"> Miscellaneous Guides
|
Post Message |
Where to Download Autohotkey:
https://www.autohotkey.com/
Basic Simple Scripts to spam skills:
1. Pressed Macro
As stated above this marco will work as u press the key. Ex. I want to autospam double stafe which atm is at my key e. All u have to do is hold e and it will spam the key and click for u till u let go of the selected key.
Quote:~E::
loop
{
GetKeyState, state, E,P
if state = U
break
Sleep, 17
send, {e}
sleep, 17
send, {Click, down}
sleep, 17
send, {Click, up}
}
return
2. Pressed Macro( W/O Click)
Useful for items or skills that do not require a mouse click.
Quote:~E::
loop
{
GetKeyState, state, E,P
if state = U
break
Sleep, 17
send, {e}
}
return
3. Toggled Macro
All u do is press your selected key and the macro will run for u. Press the selected key to turn off the macro.
Quote:#MaxThreadsperHotkey 2
~E::
Previouskey:= !PreviousKey
loop
{
if PreviousKey
{
Sleep, 17
send, {e}
sleep, 17
send, {Click, down}
sleep, 17
send, {Click, up}
}
else
break
}
return
4. Toggled Macro (w/o the key press)
Quote:#MaxThreadsperHotkey 2
~E::
Previouskey:= !PreviousKey
loop
{
if PreviousKey
{
Sleep, 17
send, {e}
}
else
break
}
return
5. Toggled Macro
1. switching gears via bm keys.
2. If u want to change were your gear will be in the bm keys just change F4-F8 in the script to what ever keys u want.
3. If u want to change activation button (default atm is end key) just change the end word in beginning of script to whatever key u want.
Quote:~End::
loop, 5
{
Sleep, 17
send, {F4}
Sleep, 17
send, {F5}
Sleep, 17
send, {F6}
Sleep, 17
send, {F7}
Sleep, 17
send, {F8}
}
return
6. Autoloot List
Quote:~End::
listofLoots := "@autoloot item etc,@autoloot item etc,@autoloot item etc,@autoloot etc"
LootsArray := StrSplit(listofLoots, ",")
loop % LootsArray.MaxIndex()
{
this_aloot := LootsArray[A_Index]
sleep, 17
Send, %this_aloot%
sleep, 17
send, {enter}
}
return
Download:
https://gofile.io/d/5R8YZT
Will add more marcos as time goes on, will also listen to requests. |
|