hey - I have 3 questions! :
1) wich money pot app will be active to play after v2 maintenance complete, you have two apps - idk why, number #492 or #2668? but in dicebot we can connect with dice.seuntjie.com
2) is there some possibility to somehow disable all prints who was showing bot console, with some kind of commads or deleting some file, or editing some file in bot folder?! (i can't edit script and delete prints, because then script will not work fully) i dont talk about 1, 2 or 5 lines in prints every bet, but even 200+ lines printing in every bet if bot is started few seconds/minutes ago.
3) is there possibility to change priority for CPU/RAM usage for bot whatever how?! in windows10 i cant find it, years ago in win7 i had opportunity for games to do that simple in task manager, maybe there is opporunity to do that for dicebot, that he will no eat all CPU/RAM?!
waiting for answers, thanks.
1) The untitled dice app will be unavailable for a quite a while, I will need to migrate that app at some point. The dice.seuntjie.com one will hopefully be back online this weekend with at least btc bets working, depending on how much time I get to work on it.
2) Remove the prints from your script. Prints are for debugging/verbose/notifications only, they have no effect on the bet. There is no way to disable the printing completely or to disable to default prints.
3) DiceBot by itself does not use that much CPU power or memory. It sounds like your script is horribly inefficient with huge arrays/lists that does not get disposed of properly, long for loops and hundreds of print statements. Try optimizing your script a bit
I'm removed and maked that script don't shows that "big prints".
maybe for you it will be stpd question but, now there is question, how bot is reading the script?! there is difference between that i will have more collumns side by side, than one cullumn and all things in lines?! and bot will read faster if script will be less "space bars" ?
like sample:
1 = 0 2 = 0 3 = 0 4 = 0 5 = 0
vs
1 = 0
2 = 0
3 = 0
4 = 0
5 = 0
vs (less space bars)
1=0 2=0 3=0 4=0 5=0
in theory there is no difference with that for bot difficultly read the script? or is?
simple there is thing - if i will run small size txt file 4kb/150command lines/rows script with no prints on yolodice with basebet 0.00000010 i will get 8bets per second rate. (even 10-11bet per second, after some script improves)
- if i will run the same script but full version what is txt file 256kb/10000command lines/rows without prints, on same yolodice, with same basebet 0.00000010 i will get now only 2bets per second rate.
you said that there is no difference how long is the script, bets should be the same speed/rate, but there is big difference... what you suggesting me to do to improve script for faster betting like with std/small scripts?!
edited:iv did some tests with txt files and their sizes, so yes, less spaces bars, less file size, and iv found that "enter to next line is very expensive" like simbol is 1 byte, space bare&tab is 1 byte, but "enter to next line" is 2 bytes