The bustabit client hasn't been updated since July 20th and I haven't received reports of the problem from any other players, so its cause probably lies elsewhere.
For what it's worth I test bustabit with Chrome during development and haven't noticed any performance issues. You can improve performance a little bit by enabling CPU saver mode from the game settings. To get there click the gear button to the left of the chat box.
Ok, it will probably be related to my environment, so I'll try to do some tests (or migrate the browser with Bustabit elsewhere).
About "CPU saver mode"; great hint, thanks - I'm not exactly sure, if I had or hadn't enable this before (as the checkbox displaying of this function is weirdly under the frame - but again, it could be related to my OS / environment), but I'll definitively try to enable and I'll see, if this would helps or not.
And anyway, another question - is it possible, somewhere in the script, use some variables like NetProfit or "Current_Amount_on_My_Account" or something like this ? Let's say I'd like to bet (in case of win) 1/1000 of NetProfit (or CurrentAmount, doesn't matter), so my question is, if e.g. this part of code :
if (config.win.value === 'base') {
currentBet = config.baseBet.value;
} ...
is possible to replace with something like this :
if (config.win.value === 'base') {
currentBet = round(($NetProfit - 20000) / 1000);
} ...
Thanks again, devans, for all your help and communication!