Page 6 of 9 FirstFirst ... 45678 ... LastLast
Results 126 to 150 of 222

Thread: Pumba [OSR color java bot] dev thread

  1. #126
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    again: styling not done and there are no icons yet.
    small preview of adding a script that you want to run and a search function, GUI actually gets your scripts now from the scripts folder
    http://puu.sh/n5BzM/c118278ce5.mp4

  2. #127
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    again: styling not done and there are no icons yet.
    small preview of adding a script that you want to run and a search function, GUI actually gets your scripts now from the scripts folder
    http://puu.sh/n5BzM/c118278ce5.mp4
    Very nice!

    <------------------>



  3. #128
    Join Date
    Oct 2015
    Posts
    80
    Mentioned
    2 Post(s)
    Quoted
    35 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    again: styling not done and there are no icons yet.
    small preview of adding a script that you want to run and a search function, GUI actually gets your scripts now from the scripts folder
    http://puu.sh/n5BzM/c118278ce5.mp4
    Very nice, Hoodz. Seems to be coming along real nice. Just a question, this will have Windows support right? Since you seem to be using MAC.

  4. #129
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by terrorbyte View Post
    Very nice, Hoodz. Seems to be coming along real nice. Just a question, this will have Windows support right? Since you seem to be using MAC.
    It's a java program so it can support potentially any platform that can run a JVM
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  5. #130
    Join Date
    Oct 2015
    Posts
    80
    Mentioned
    2 Post(s)
    Quoted
    35 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    It's a java program so it can support potentially any platform that can run a JVM
    Sounds good. Thanks

  6. #131
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    cleaned up some code and added account tiles

    preview

  7. #132
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    cleaned up some code and added account tiles

    preview
    Your background matches your DP!

    I also found a couple picture of you Hoodz -

    A Good day



    And a bad day


    <------------------>



  8. #133
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by AFools View Post

    I also found a couple picture of you Hoodz -
    Scripting with ogLib

  9. #134
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    http://i.imgur.com/IOXaq0E.jpg

    This made me laugh harder than was probably necessary
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  10. #135
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    This made me laugh harder than was probably necessary
    Found it while scrolling a mass animal meme thread, haha.

    On Topic: Will your client hoodz, have an include like so with Simba? Mouse(x, y, left, 100, 500) etc.?
    Scripting with ogLib

  11. #136
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    Found it while scrolling a mass animal meme thread, haha.

    On Topic: Will your client hoodz, have an include like so with Simba? Mouse(x, y, left, 100, 500) etc.?
    it does have an in build API: example:
    Mouse.move(x, y);
    Inventory.interact(slot, action);

  12. #137
    Join Date
    Dec 2010
    Posts
    483
    Mentioned
    30 Post(s)
    Quoted
    328 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    On Topic: Will your client hoodz, have an include like so with Simba? Mouse(x, y, left, 100, 500) etc.?
    With a Java bot, everything is built into the bot itself. You will include the bot as a dependency in your IDE and that will give you access to all of the contents.

    Your "includes" will be the individual objects you require for your script, or depending on how Hoodz chooses to build his API may be a single Methods class.

    At the very least you will have to include his Script object so that you can inherit from it.

  13. #138
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    Hoodz has included a pic of the API on the very first post. You may need to select 'show' on the (show/hide) on the post.

    <------------------>



  14. #139
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    it does have an in build API: example:
    Mouse.move(x, y);
    Inventory.interact(slot, action);
    Thanks, would you say that someone with limited knowledge of Java would be able to develop a script by just the include... Kinda the same as using Simba? Good luck with your project btw!

    Quote Originally Posted by the bank View Post
    With a Java bot, everything is built into the bot itself. You will include the bot as a dependency in your IDE and that will give you access to all of the contents.

    Your "includes" will be the individual objects you require for your script, or depending on how Hoodz chooses to build his API may be a single Methods class.

    At the very least you will have to include his Script object so that you can inherit from it.
    I appreciate the insightful reply. (:

    Quote Originally Posted by AFools View Post
    Hoodz has included a pic of the API on the very first post. You may need to select 'show' on the (show/hide) on the post.
    Will head over and look now.
    Scripting with ogLib

  15. #140
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    Thanks, would you say that someone with limited knowledge of Java would be able to develop a script by just the include... Kinda the same as using Simba? Good luck with your project btw!
    Ill make a tutorial so people can make basic scripts, if you can make simba scripts then you can probably also script for pumba. Only the basics of java will be required

  16. #141
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    Ill make a tutorial so people can make basic scripts, if you can make simba scripts then you can probably also script for pumba. Only the basics of java will be required
    Sounds like you've got this all figured out! I look forward to seeing the progress and finished product; good luck!
    Scripting with ogLib

  17. #142
    Join Date
    Feb 2013
    Posts
    342
    Mentioned
    8 Post(s)
    Quoted
    110 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    Ill make a tutorial so people can make basic scripts, if you can make simba scripts then you can probably also script for pumba. Only the basics of java will be required
    Sounds good, would you say its worth learning anything Java based before/during trying to script for it?

    Edit:
    Quote Originally Posted by hoodz View Post
    ...Only the basics of java will be required
    Need to read better, my bad.
    Last edited by GetHyper; 02-19-2016 at 12:44 PM.

  18. #143
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by GetHyper View Post
    Sounds good, would you say its worth learning anything Java based before/during trying to script for it?

    Edit:
    Need to read better, my bad.
    yes its definitely worth it.

  19. #144
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    How's the progress going @hoodz;?
    Scripting with ogLib

  20. #145
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    How's the progress going @hoodz;?
    sadly, no progress. I was working on another project, but don't worry I'll be working on it this weekend again.

  21. #146
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    sadly, no progress. I was working on another project, but don't worry I'll be working on it this weekend again.
    Did I just hear correctly? Another 'side-project'. =P

    <------------------>



  22. #147
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by AFools View Post
    Did I just hear correctly? Another 'side-project'. =P
    no it has nothing to do with Pumba.

  23. #148
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    Quote Originally Posted by hoodz View Post
    no it has nothing to do with Pumba.
    It was a joke.. to go with that meme I posted some weeks ago. I have been busy with non-runescape related stuff too.

    ** I have lost all motivation for runescape; finally! i am free of the shackles and being a slave to the game. =D

    I hope you don't lose motivation for PUMBA as it is very ambitious and would be great for you to finish it. Even if it takes another year or more to complete - i'm not even sure if i will still be floating around by then. But I try to check this thread often.

    <------------------>



  24. #149
    Join Date
    Aug 2014
    Location
    Australia
    Posts
    932
    Mentioned
    53 Post(s)
    Quoted
    495 Post(s)

    Default

    @hoodz; How come it's resizable mode only? Not sure if this has been asked already.



    New to scripting? Procedures & Functions for Beginners
    Do you use your computer at night? Just get f.lux

  25. #150
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by Incurable View Post
    @hoodz; How come it's resizable mode only? Not sure if this has been asked already.
    On resizable mode you are be able to see more, thats useful for color scripts.

Page 6 of 9 FirstFirst ... 45678 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 4 users browsing this thread. (0 members and 4 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •