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

Registration Date: 05-10-2022
Date of Birth: Not Specified
Local Time: 03-28-2024 at 09:44 AM
Status: Offline

Breakfast Kid's Forum Info
Joined: 05-10-2022
Last Visit: Today, 12:28 AM
Total Posts: 32 (0.05 posts per day | 0.56 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, 23 Hours
Members Referred: 0
Total Likes Received: 16 (0.02 per day | 1.1 percent of total 1452)
(Find All Threads Liked ForFind All Posts Liked For)
Total Likes Given: 0 (0 per day | 0 percent of total 1452)
Reputation: 18 [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 5
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 3 0
All Time 16 0
 
Most liked by
errolcute 4 25%
totoro91 2 13%
HaZe 1 6%
Xileria 1 6%
Tyrannical 1 6%
 
Most liked
Breakfast Kid has not yet liked.