Simple botbase I put together very quick. It spams the placard menus to try and snipe a house plot. It doesn't have a UI, but it's capable of buying personal or FC if you manually go in and change the file. Code: // Select whether to buy for personal or FC if (SelectString.IsOpen) { // 0 = Buy Personal // 1 = Buy FC SelectString.ClickSlot(0); return false; } Change ClickSlot to 1 for FC, leave at 0 for personal. I can't really confirm if this is too slow, too fast, or whatever. The 'plot of land is not yet ready for purchase' message appears, so i'm gonna assume it went through; my intent was too make it fast. I don't have a house yet (hence why I made this), but if I get one i'll confirm it worked for me. Edit: One more note. It's not gonna stop if you successfully get the plot.
Hi @Exmortem ! Can you confirm if this worked for you or if you made any changes? I have been trying to buy a house with this for almost a month already without any success. UPDATE: I decided to try it on my bf's pc and I was able to get the house in my second attempt. Maybe the problem was my computer and not the bot lol. Either way, I'm finally free from this torture lol.
Hello! You have to unzip this in the folder of botbases, then you have to reopen the program and find and choose it from the dropbox at the upper right corner, then press start in front of the placard. You need to edit it if you want to use it to buy it as a free company, for personal house you can use as is. I hope that helps!
anyone else have luck with this? 2 times in a row i let it run for a few hours on end, and when i looked back over, someone else had gotten the purchase and already had a house up. Not sure if it clicks too fast to register and someone else is just wandering up and clicking while i stand there like a re-re or what.
Thank you for this, my hand was starting to cramp up on the controller and more and more people are showing up!
You can use the AsyncBotBase so you don't have to wrap your code in a ActionRunCoroutine. I'd also check the contents of the SelectString window to exit if its not the buy line text Also, id add a sleep so that its not going turbo fast as that could be detected serverside.
I am looking for a house myself right now and am using this. Just added one line of code to sleep the BotBase each time its loop executes. I set the sleep between actions to 500ms for the upload, I ran with 1000ms against 10+ people last night and I was too slow to get it. 500ms is probably a decent balance of spam moderation and speed, but I am running it a bit faster tonight personally. I put a suggested range in the comment above the line of code, if you go too low (sub 100 for me) it actually slows down the frequency of attempts and can lead to disconnections. You can edit the number in the parenthesis on the line "await Coroutine.Sleep(500);" to change the delay. Edit: Thanks much for the original upload!!