Idle Bot

Posts 16–30 of 39 · Page 2 of 3
Quote Originally Posted by Hoondig View Post
Hey guys, I wrote a super quick and dirty macro bot that I run myself. With anyone that has a similar setup, have you noticed that you've stopped receiving crates? 2 days ago, I made like 7 crates for the 24 hours my bot ran, but in the last 17 hours with my bot confirmed working the whole time, I have received 0 crates.

Has anyone else noticed this happening to them? I haven't been able to find any official post from psyonix saying that they've implemented this, but I could definitely see them just doing something like this quietly.
I have vps with 3 accounts, and im farming 40 crates daily lol.
Quote Originally Posted by Skillize View Post
I have vps with 3 accounts, and im farming 40 crates daily lol.
How long have you been farming them for? I only noticed I stopped getting crates after about 2 solid weeks of 24/7 farming.
Quote Originally Posted by Hoondig View Post
Hey guys, I wrote a super quick and dirty macro bot that I run myself. With anyone that has a similar setup, have you noticed that you've stopped receiving crates? 2 days ago, I made like 7 crates for the 24 hours my bot ran, but in the last 17 hours with my bot confirmed working the whole time, I have received 0 crates.

Has anyone else noticed this happening to them? I haven't been able to find any official post from psyonix saying that they've implemented this, but I could definitely see them just doing something like this quietly.
Can u share the macro (if it run with the game minimized) thanks.
darbo, when I said super quick and dirty, I mean it. It runs the game in a 300x400 window and the macro forces the rocket league window to be active, so unless you have a computer that you can dedicate to rocket league farming, you don't want my macro.
Quote Originally Posted by Hoondig View Post
darbo, when I said super quick and dirty, I mean it. It runs the game in a 300x400 window and the macro forces the rocket league window to be active, so unless you have a computer that you can dedicate to rocket league farming, you don't want my macro.
Is their any chance i could get that macro i have multiple computers and i could use one of them to farm items.
Quote Originally Posted by Hoondig View Post
darbo, when I said super quick and dirty, I mean it. It runs the game in a 300x400 window and the macro forces the rocket league window to be active, so unless you have a computer that you can dedicate to rocket league farming, you don't want my macro.
can u send me that too? pls
for people who want to get a crate farming bot , you can easily create one with 'razer synapse ' just google it.
Psyonix is probably going to add some detection to flag bots that don't hit the ball X amount of times on average per game, or don't react to ball and player movement.

I should be releasing my basic ball following bot tonight if everything goes well.
Quote Originally Posted by Nimboso View Post
Psyonix is probably going to add some detection to flag bots that don't hit the ball X amount of times on average per game, or don't react to ball and player movement.

I should be releasing my basic ball following bot tonight if everything goes well.
HI nimboso i really want to try ur bot too i don't try it 24/24 but only for few hours just to try and help u what gone wrong or what can be better i can help u really can i try ur bot i really need one !!!
After I get home today, I'll make sure the bot didn't crash overnight/ the day and if its all good, I'll fix a bug where it won't boost, and then I'll release it as a beta.
Tonight for sure though.
Since 2 people have asked me for it (and Nimboso hasn't released his bot that will actually be half decent compared to my garbage), here is what I have up and running for a temporary bot that works right now.

I am using autohotkey, and to avoid uploading an attachment that needs to be approved (and the fact that running random .exe from the internet is sketchy enough) I will simply provide the source code.

In order to run this, you will have to download and install autohotkey (a simple google search will do it), then copy and paste the text below into an empty text file and save it as [some name].ahk

When saved as an ahk file, you should be able to right click and run, or right click and compile the script into a simple .exe that you can run on a computer without autohotkey installed.


Please note that since this barely works, I have hard-coded coordinates meant for a rocket league window that is 300x400. So you will HAVE to set your rocket league to windowed mode with 300x400 resolution, or figure out where the buttons are and manually change the coordinates in the script yourself. Using Intel Graphics should have a 300x400 resolution option, but if you have an NVidia card, you will likely have to go into the nvidia control panel and add a custom resolution of 300x400 to have it as an option for your windowed resolution. Not sure if this will work at all with AMD cards if they don't let you choose 300x400 by default.

Like I said, this is a terrible temporary solution, but it does work. Upon running the script, it should automatically start rocket league (if not already open) then automatically click the buttons to search for a match. Note it will not change playlists it searches in so just set that to whatever you want before hand. It will then hold down forward for 15 seconds, then automatically try and rejoin a match (in case of getting kicked for idle or server goes down) and continue. For some reason, autohotkey crashed on the computer I use this on all the time, so I also use KNAS restarter (google to find the program) check every 30 seconds to make sure the script is still up and running.

You can press 'q' to quit the script, or 'z' to manually restart the script if it's running (starts by selecting options to search for a game).

As I have said, this is a terrible solution, but if you really want it, enjoy:

Code:
Start()

z::
Start()

q::
Send {w up}
ExitApp

Start() {
	IfWinNotExist, Rocket League (32-bit`, DX9)
		Run, steam://rungameid/252950
	WinActivate, Rocket League (32-bit`, DX9)
	Idlebox()
}

Drive() {
	Send {w down}
	Sleep 15000
	Send {W up}
	Start()
}

Idlebox() {
	SendEvent {Click 200, 200}
	Sleep 100
	SendEvent {Click 200, 200}
	Sleep 100
	Mainjoin()
}

Serverdown() {
	SendEvent {Click 48, 252}
	Sleep 100
	SendEvent {Click 165, 205}
	Sleep 4000
	Mainjoin()
}

Mainjoin() {
	Sleep 500
	SendEvent {Click 60, 150}
	Sleep 500
	SendEvent {Click 60, 135}
	Sleep 500
	SendEvent {Click 365, 280}
	Sleep 1000
	Drive()
}
Just don't blame me that this is terrible. It works well enough for me, and I've had it running for about 2 weeks non-stop without issues, so have at it. Note that when Nimboso updates the pointers and releases his new bot, it will be waaay better than this and you should stop using this garbage when this happens.

Other than that, enjoy.
I just got mine sorta working after the update. I'll upload it tomorrow night after I can get some more testing done. It's working enough to run and follow the ball most of the time, just need to do a few tests when I'm awake.

EDIT: Maybe not "mostly" working... Damn pointers.
Quote Originally Posted by Hoondig View Post
Hey guys, I wrote a super quick and dirty macro bot that I run myself. With anyone that has a similar setup, have you noticed that you've stopped receiving crates? 2 days ago, I made like 7 crates for the 24 hours my bot ran, but in the last 17 hours with my bot confirmed working the whole time, I have received 0 crates.

Has anyone else noticed this happening to them? I haven't been able to find any official post from psyonix saying that they've implemented this, but I could definitely see them just doing something like this quietly.
it is cause RL has a max of 24 hour droptime per week that you can acquire items
Quote Originally Posted by arcaneboii View Post
it is cause RL has a max of 24 hour droptime per week that you can acquire items
That's only for regular items (which I noticed). I was definitely still receiving crates after I definitely was not receiving any more uncommon (or other) item drops. They are completely separate drop systems, I don't believe there is a current limit to crates. After waiting for a day, I am receiving crates as normal, 24/7 again.
Quote Originally Posted by arcaneboii View Post
it is cause RL has a max of 24 hour droptime per week that you can acquire items
It's actually 10 hours per week of actual playtime for uncommon drops. No limit for crates.
Posts 16–30 of 39 · Page 2 of 3
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?