BottersLyfe Posted December 16, 2013 Share Posted December 16, 2013 Nice man, thanks for the tutorial Might try to see if I understand some of it :P Link to comment Share on other sites More sharing options...
Pandemic Posted December 17, 2013 Author Share Posted December 17, 2013 No problem! Link to comment Share on other sites More sharing options...
oTroll Posted December 17, 2013 Share Posted December 17, 2013 (edited) You shouldn't haven't introduced enums so quickly, since that's pretty complex for a beginner scripter. Back in the ol' day when I was a beginner this was my basic skeleton: //Constants private boolean toWhatever() { //code return false; } private int whatever() { // code return 2000; } private int loop() { if (toWhatever()) whatever(); return Random().NextInt(50)+10; } Otherwise nice structure throughout the thread, I actually learned something new Edited December 17, 2013 by oTroll Link to comment Share on other sites More sharing options...
Pandemic Posted December 17, 2013 Author Share Posted December 17, 2013 Haha, while I sort of agree with you, I think introducing enums early is a fun way to teach new learners to use Java's site as a resource (that's why I linked them to their enum page). Regardless, I'm glad you learned something 1 Link to comment Share on other sites More sharing options...
Ghetto Posted December 17, 2013 Share Posted December 17, 2013 Wow very detailed instructions thanks man! Link to comment Share on other sites More sharing options...
ean Posted December 17, 2013 Share Posted December 17, 2013 ty Link to comment Share on other sites More sharing options...
Jacksonpm23 Posted December 17, 2013 Share Posted December 17, 2013 Next time I get around to free time, I'm using this! Hopefully a decent one. Link to comment Share on other sites More sharing options...
Pandemic Posted December 17, 2013 Author Share Posted December 17, 2013 Let me know what you think! 2 Link to comment Share on other sites More sharing options...
koszmar Posted December 17, 2013 Share Posted December 17, 2013 Thanks for the tutorial it helped me a lot in addition to watch thenewboston/etc. Link to comment Share on other sites More sharing options...
Pandemic Posted December 18, 2013 Author Share Posted December 18, 2013 No problem. Link to comment Share on other sites More sharing options...
Llama Posted December 18, 2013 Share Posted December 18, 2013 I can't add an external archive for some reason, it only shows 'configure build path'. Got any advice? Link to comment Share on other sites More sharing options...
Pandemic Posted December 18, 2013 Author Share Posted December 18, 2013 Press that, and then there should be a button that says add external jars. Link to comment Share on other sites More sharing options...
pitoluwa Posted December 19, 2013 Share Posted December 19, 2013 We need a node system tutorial! Link to comment Share on other sites More sharing options...
Pandemic Posted December 19, 2013 Author Share Posted December 19, 2013 Haha pitoluwa, it's the simplest thing in the world >.< I don't think a tutorial would be necessary lol. Link to comment Share on other sites More sharing options...
ping pong Posted December 22, 2013 Share Posted December 22, 2013 (edited) Allright Pandemic, awesome tutorial. I am not new to coding, as I have created a fairly complex YouTube bot through Visual Basic that took me about 4 months. That being said, I jumped right into Java a while back and lost a lot of the touch I used to have. Looking over this, I like what you did here. I just simply would like to see more diversity in the code. For example, what we can and can't change, and less structured since afterall, scripts can differ so greatly. I suppose what I am trying to say is can you show us what we can add and take away with this script, and diversify the tutorial a bit? Can you also show us more with creating an accurate paint (especially a draggable one, that seems to be the new thing). Looking through what you did here, I feel as if we would have to create a powermining script. How do we add banking? The same way we added that it mines the rocks? But what about finding the nearest location, drawing the points for it to walk (or randomizing them inbetween), etc.? There are just so many unanswered points here, and I almost feel as if I have to create a script where it powermines or powerchops because that's all I would be capable of doing. Edited December 22, 2013 by ping pong Link to comment Share on other sites More sharing options...