What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

How to make bot autostart?

darlack

Member
Joined
Mar 3, 2015
Messages
252
Reaction score
0
Hello, can you tell is it possible to make bot autostart? I want start game and bot with *.bat file after reboot, all works but can't find how to auto push START button at buddy. Is is have shortcut command?
something like? "C:\Users\RiTe\Desktop\FlashBudy\Buddish.exe" -autostart
 
Hello, can you tell is it possible to make bot autostart? I want start game and bot with *.bat file after reboot, all works but can't find how to auto push START button at buddy. Is is have shortcut command?
something like? "C:\Users\RiTe\Desktop\FlashBudy\Buddish.exe" -autostart

10 lines of code pretty much.

Some hints :

Code:
// 1st hint
private readonly Dictionary<string,string> _argDic = new Dictionary<string, string>();

// 2nd hint
var ebArgs = CommandLine.Arguments;

// 3rd hint
BotManager.Start();

With those infos you can make anything out of command line args.
 
10 lines of code pretty much.

Some hints :

Code:
// 1st hint
private readonly Dictionary<string,string> _argDic = new Dictionary<string, string>();

// 2nd hint
var ebArgs = CommandLine.Arguments;

// 3rd hint
BotManager.Start();

With those infos you can make anything out of command line args.

it's c# code or .bat ?
 
Back
Top