Originally Posted by
DoNatz
always make backups of your code after a new release and keep up to 10 backups of different code versions, this helps very much with such things ^^
btw .. you said you dont use threrads for different features of the bot .. so you use sleeps i guess .. which means the more features you got the more sleeps you have to use .. more sleeps slow down the bot routine very much so there are 3 ways to speed it up again, but we talked about one already ^^
1. use threads (which would be the fastest way but kinda difficult too if you never worked with em)
2. let ppl choose all sleep values and disable/enable ALL features you can do this like "if checkbox_xxx = checked then [...]" and if there is a sleep after that action put the sleep into the if clause cuz if you dont do that the bot will sleep and sleep and sleep (which i think he does now sometimes)
3. lower down the sleep values yourself and remove some sleeps you dont really need (requires some testing)
greetz