Quote:
Originally Posted by wherner1
How do you start 2 of these at once?
|
"Out of the Box" Solution
If you (for whatever reason) really need to have multiple instances running you will either need multiple, physical devices or you need to run virtual machines.
Coding required
Greyb1t was so nice to provide the full source-code to this bot so you are theoretically able to recode it to dual awake like:
!Pseudocode!
Code:
If(Client1.Status = Status.Awakening)
{
Client2.StartAwake();
}
Note: This task is not as trivial as it seems.There are multiple code-sections where you would need to have multiple lists/arrays to handle as well as multi-threaded UI invoking as well as validation of certain datas and behaviours like: What is if the Task that handles data from Client1 is running into an exception on validating while Client2 is currently in mouse control etc.
I personally do not think it is worth making this happen unless you do it to improve your coding skills.