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

Is there a "Start"/"Stop" argument available for Exilebuddy.exe Command Line ?

millsaps1234

New Member
Joined
Apr 15, 2015
Messages
4
Reaction score
0
Is there a "Start"/"Stop" argument available for Exilebuddy.exe Command Line Entry ?

I know I can use exilebuddy.exe --config:XXXX, but I still got stuck once the program entered into the main tab.

I want to have a way to automatically "start" the bot when exilebuddy.exe is ready, but this main tab issue prevents me from writing an effective script program to do my auto game&bot management.
 
Is there a "Start"/"Stop" argument available for Exilebuddy.exe Command Line Entry ?

I know I can use exilebuddy.exe --config:XXXX, but I still got stuck once the program entered into the main tab.

I want to have a way to automatically "start" the bot when exilebuddy.exe is ready, but this main tab issue prevents me from writing an effective script program to do my auto game&bot management.

Not without a plugin adding & parsing this arg.
 
Not without a plugin adding & parsing this arg.

But well, since I needed it few days ago, here you go, a plugin that handles autostart. Unzip in your plugins's folder. Enjoy

Usage :

Code:
".....\your_eb_process_name.exe" --config:YOUR_CONFIG_NAME --autostart:true
 

Attachments

>Notice the fact that it's called "ZZExilebuddyArgs", it's not a bug it's on purpose because I want it to be enabled last when loading

AHA. So that is how to do it the easy way.
I did it the hardway, used autoit:
Code:
	WinActivate("[REGEXPTITLE:Exilebuddy.*]")
	;WinWaitActive("[REGEXPTITLE:Exilebuddy.*]")
	Sleep(1*1000) ;wait to gain focus
	MouseClick("left",$_iEBStartButtonXCoords,$_iEBStartButtonYCoords)	;Click start


The command bool.TryParse is new to me :p


wimm
 
Last edited:
>Notice the fact that it's called "ZZExilebuddyArgs", it's not a bug it's on purpose because I want it to be enabled last when loading

AHA. So that is how to do it the easy way.
I did it the hardway, used autoit:
Code:
	WinActivate("[REGEXPTITLE:Exilebuddy.*]")
	;WinWaitActive("[REGEXPTITLE:Exilebuddy.*]")
	Sleep(1*1000) ;wait to gain focus
	MouseClick("left",$_iEBStartButtonXCoords,$_iEBStartButtonYCoords)	;Click start


The command bool.TryParse is new to me :p


wimm

Yeah, it took me like 20 minutes to code it so, it's working and im proud :D it was supposed to be ran on a fully 100% automated botting RIG. Now I don't even manage any stupid bot :D
 
--autostart command is built-in in the bot actually, no need for external plugins.
 
--autostart command is built-in in the bot actually, no need for external plugins.

back few months it wasn't :) but this plugin also allows you to do whatever you want, add any args :)
 
Back
Top