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

Scheduler Settings

Darox

Member
Joined
Nov 7, 2014
Messages
353
Reaction score
2
Hey,

I was wondering if it was possible to set the scheduler to log off and shut POE then to auto open and log on after x time? Or even just log off after 2 hrs etc.

I would like to just log off after 2 hrs but the bot auto starting would be awesome as well. L:D


Thanks,
 
No, you'd need to code an external tool to do that, as if PoE closes, so does the bot.

It probably would be possible to code something that adds a Windows scheduled event to do it as well, but that's something for users to look into. See Schedule a Task, for example. You'll want to read over the Exilebuddy Guides that go over command line arguments as well to make use of it all.
 
No, you'd need to code an external tool to do that, as if PoE closes, so does the bot.

It probably would be possible to code something that adds a Windows scheduled event to do it as well, but that's something for users to look into. See Schedule a Task, for example. You'll want to read over the Exilebuddy Guides that go over command line arguments as well to make use of it all.

Interesting, would it be possible to set POE to shut down after the scheduler is done. That is more human like if you are away all day as opposed to sitting in character selection or log on page for 10+ hrs.
 
Interesting, would it be possible to set POE to shut down after the scheduler is done. That is more human like if you are away all day as opposed to sitting in character selection or log on page for 10+ hrs.

There's nothing non-human like about idling on the title screen or character selection, but if you don't want to, you can just execute the code:
Code:
LokiPoe.Memory.Process.Kill();

to close the attached Path of Exile process.

Look inside the LokiPoeOnOnGuiTick function, and you can add that right under the BotManager.Stop(); call, and it'll exit PoE right after stopping the bot.
 
Interesting, would it be possible to set POE to shut down after the scheduler is done. That is more human like if you are away all day as opposed to sitting in character selection or log on page for 10+ hrs.
Hey reganown,
I agree with Pushedx, but if it makes you more comfortable, what Pushedx says works, but you have to somehow launch PoE again. Why not just go to title screen? Even though on the screen you have like 60% cpu spike doing nothing lol.
 
Back
Top