Breakfast Kid
(Game Masters)
******

Registration Date: 05-10-2022
Date of Birth: Not Specified
Local Time: 11-30-2023 at 03:22 PM
Status: Offline

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 ForFind 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.

Breakfast Kid's Received and Given Likes
  Likes Received Likes Given
Last week 0 0
Last month 1 0
Last 3 months 1 0
Last 6 months 2 0
Last 12 months 2 0
All Time 15 0
 
Most liked by
errolcute 4 27%
totoro91 2 13%
Bravo 1 7%
Xileria 1 7%
Tyrannical 1 7%
 
Most liked
Breakfast Kid has not yet liked.