Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
d4ns0ul

Keybinding to Start The Bot

Recommended Posts

Dear ExiledBot Team, 

 

My request its very Simple

 

Is it possible to add a personnalised or not, key binding features for Starting the bot.

Like a F Button

Only For Starting

 

Thanks

 

Also will be nice to have Chaos and regret recipe Farming !!!

Share this post


Link to post
Share on other sites

I mean the first start button not pause and resume. 

Like space or enter maybe someting like that will be cool !

 

I want to automate the process of restarting my vm'S

and i cant automated the start bot.

Share this post


Link to post
Share on other sites

Hello there.

 

What you are asking for can easily be done with a small AutoHotKey script.

I've quickly written one up that you might find useful.

TrayTip,ExiledBot_Start,ExiledBot_Start is now running.
settimer,CheckForBot,1000 ;Comment this out if you want it to run even when the bot is not running.
return

^F12::  ;HotKey = Control+F12
Process, Exist, ExiledBot.exe
if (ErrorLevel = 0)
{
MsgBox ExiledBot is not running.
}
else
{
ControlClick,Button3,ahk_pid %ErrorLevel%
;Exitapp      ;Uncomment Exitapp if you want this program to close after the bot starts.
}
return

CheckForBot:
Process, Exist, ExiledBot.exe
if (ErrorLevel = 0)
{
ExitApp
}
return

Just start this program with your bot and Control+F12 becomes start bot.

 

Hope that helps. =P

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...