Care to explain why your compiled bot, offered on your official website, silently opens itself again in the background, without any way to see the window itself, after it's being closed and suddenly starts using x% of CPU power, out of nowhere and makes the CPU fan turn up, with nothing else running besides of this? And also why it silently opens itself again (still invisible!) after being closed via TaskManager until you finally give up and just let it be?
Waiting for an interesting excuse. And don't say "You can review the code", it's the most easiest excuse to include a Bitcoin Miner with the "official compiled version" and say afterwards that everyone can review the code, while the Source Code does not show said thing, but the pre compiled version has it built right into it.
It's a huge bold thing I'm saying here, but there really is no other explanation for this.
And suddenly a different version appears on the website when he'll read this I found this bug myself about a day after publishing 3.1.7. I changed a few things when logging out of a site, because the sessions weren't being cleared properly and I wasn't doing proper checks, and this caused the bot to sometimes place a bet after the user clicked log out because of an unrelated bug. I fixed the bug but wanted to be double sure the bot can't place a bet after log out was clicked.
These changes seems to have come with their own set of bugs. It now seems like something is preventing the disconnect function from being called, so the threads that poll the site for the users balance and stats remain active and keep the bot alive in the background (I've confirmed that these threads are what's keeping the bot alive, it's not a guess). This does not seem to happen every time though, I've still to determine exactly what requirements need to be met for this to happen. (site, login/logout,switching sites, etc.), but I have a pretty good Idea and it will be fixed in the next version, which is i'm sad to say, probably still weeks away.
Every time I've killed the bot in the task manager, I only needed to do it once and it was gone. I've never seen the bot start up again by itself. Maybe you can make a video of it so I can try to isolate the problem and fix it?
And the kicker: "You can review the code"
No seriously. I don't use an obfuscator when I compile the bot. You can download
DotPeek or any other decompiler and review the source of the exe and every library it uses, as you downloaded it from the site. Note that comparing the code decompiled from the bot will not 100% match the code on github because compiling and decompiling actually does change code in some minor ways, for example, design time code:
string s = "hello";
string b = "something";
string x = s + " " +b;
the decompiled code will be:
string stringx = "hello something";
Functionally identical, but not the same.
Edit: Did he delete his own post or did a moderator remove it?