shelledroot Posted July 3, 2017 Posted July 3, 2017 (edited) I think I'm in the right place to show my lil' project off but in case I'm not please do change it to the correct one. IntroductionI find it bothersome to remote login to start my bots or keep track on how they are doing. Thus I'm making a web dashboard/C&C from where I can command all my cabbage pickers as well as keeping track of their profits and such. I find it motivating to track my work and display it as it keeps my dedication a bit higher so here goes! Index Goals Completed goals Progress reports Goals C&C/dashboard Make the C&C/dashboard you nicked from somewhere pretty and make the pages load dynamic DB design for bots & accounts Add functionality task/list system for bots Display functional data of bots such as time ran, profit made per bot (and an estimate of $$$ earned per day cause why not!) CLI autoscript autostart scripts which can be chain loaded per bot auto proxy/vpn? Scripts tutorial island script combat script money maker scripts mule script(might just include it in other scripts instead) auto-create accounts (depending on how feasible this is Completed goals C&C/dashboard Login/Logout system - 2017-06-03 Ban Rate tracker - 2017-06-04 CLI autoscript NULL; Scripts NULL; Progress reports Progress 2017-06-03: I've got login and logout working correctly. Spoiler Progress 2017-06-04: Got all the pages I want to async load to do so. (10 lines of JS for a sceneSwitcher :D) Made bot overview. Removed about ~10k lines from source code so the UI/UX is less cluttered now.(files going from 1k+ to 200 lines of code is a good thing) Gotten some new ideas about functionality I want to add to the C&C Bot overview will probably be changed in the future but for now it looks decent enough. Can't wait to fill it up. View the bot overview: Spoiler View the Dashboard[WIP]: Spoiler Everything open: everything closed: Progress 2017-06-04: Finished the Bane Rate tracker for C&C: Spoiler DO NOTE! These ban-rates are artificial (aka I put them there in the DB) to show off the system as I have not set up the automation but it will be fun to see how it will turn out once I get to that. Still debating on if I should keep the recent tab. Oh, if you guys have any suggestions post them below. Also, I have been thinking about DB design a decent amount I'll probably post the layout tomorrow and see what you guys think :D. Edited July 4, 2017 by shelledroot MOAR PROGRAZZ
shelledroot Posted July 3, 2017 Author Posted July 3, 2017 1 minute ago, Eagle Scripts said: Goodluck with your project Thank you very much. Just hope I still know as much java as I used to. At least a nice project to get started on java again.
Eagle Scripts Posted July 3, 2017 Posted July 3, 2017 4 minutes ago, shelledroot said: Thank you very much. Just hope I still know as much java as I used to. At least a nice project to get started on java again. Sure is
okaymate Posted July 3, 2017 Posted July 3, 2017 gl and dont forget to keep the thread updated :P take care
Prismo Posted July 3, 2017 Posted July 3, 2017 us blazing seo proxys , pm me if u need help setting up
shelledroot Posted July 4, 2017 Author Posted July 4, 2017 1 hour ago, Prismo said: us blazing seo proxys , pm me if u need help setting up Honestly, It'd like one with more country options because of the day/night cycle since I'm not looking to suicide the bots. Other then for a laugh or to see which has lowest ban rate or something. ;) Thanks for the offer though!
shelledroot Posted July 4, 2017 Author Posted July 4, 2017 Posted some more progress. Amazing what you can get done with no life for less then 24 hours and skipping a night. public class Programmer extends Bot(){ while(!sleeping){ eat(); code(); } while(sleeping){ farm.bots(); } } public int onLoop(){ Programmer(); } 1