Jump to content

TheScrub

Members
  • Posts

    1130
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by TheScrub

  1. hahaha 8 days that's nothing people like me before alek were here and before raf had powers were waiting months for scripts..
  2. well i want to take some time out to do some rl stuff also i want to work on my website maybe get it webhosting lol..
  3. When will it be out probably just before Christmas This script will be free will include death failsafes+ screen shot's taken on levels more to come..
  4. yes mine has buying now if it's been updated!
  5. fuck this shit it's been released last post page 2 enough flaming all of you!
  6. now released locally for now... http://osbot.org/forum/topic/27418-scrubs-trader/
  7. download link while i make a 180x180 and put it on the SDN https://www.dropbox.com/s/ojm773ixrsewut9/Scrub_Trader.jar
  8. ughh need a 180x180 picture but i've finished adding saving/loading https://www.dropbox.com/s/ojm773ixrsewut9/Scrub_Trader.jar%C2'> still needs some work later
  9. still needs alot of work but the alpha is released still need to add a method to adjust the amount of items in a trade screen
  10. ALPHA RELEASE IS AVAILABLE FOR THE FIRST 10 PEOPLE TO MESSAGE ME!
  11. TheScrub

    Trade API

    lol gg me... but i guess the good thing about mine is it's not api dependent to osbot
  12. the test's went alright even though it's buggy it didn't get scammed so that's a good thing but will need alot longer to make it perfect!
  13. testing the trader right now if everything looks good we can expect release in 1-2 days
  14. ughh forgot to say it's released already lol
  15. i would suggest using two j lists and having one monsters in area and monsters we will fight like mine...
  16. Gh0st (great guy fun and always talk-active and helpful)
  17. the first sentence is true while you have had months to develop yours so far I've spent about 3hrs working on mine
  18. well it's my way to give back and will increase osbot's popularity
  19. it will be free GUI more stuff coming soon working on it hard!
  20. TheScrub

    Trade API

    Except my script has been complete for almost a week now, before this post was made. It's been pending in SDN upload requests for 5 days. Please no Trolling/Flaming on thread both of you two idc about this crap i'm here to code and to improve my java knowledge! (I know stark your defending yourself but just don't reply to him look at his name...)
  21. TheScrub

    Trade API

    if you read the terms and conditions you may not use my code for any premium scripts.. do not be talking smack mr asshole Problem is that you won't know if anyone uses it or not xd Anyway, some notes: public static int mytradescreen = 48; use correct java naming conventions, if you are coding for yourself I wuldn't give a fuck, but if you are trying to write modular code api/library you need to use conventions or people will have a hard time understanding the code. private Script script = Context.script; Don't use static for the sake of god. You are supposed to use oop with osbot, if you use static the vars will be "shared" to all tabs withing the client. You should init this class with a Script argument instead. public Item[] getItems(int screen) throws InterruptedException { ArrayList<Item> array = new ArrayList<Item>(); if (tradeScreenOpen()) { Item[] itemArray = Context.script.client.getInterface(335) .getItems(screen); for (Item i : itemArray) { if (i != null) array.add(i); } } return array.toArray(new Item[array.size()]); } ????? getFirstScreenItemByInteger *ById maybe public static int ourSecondScreen = 37; public static int otherPersonSecondScreen = 40; There are 4 more childs for second screen messages Only good thing worth mnetioning is the getItemsSecondaryScreen method that seems very clever thanks for the constructive feedback instead of the usual nice good work or i might use this
  22. TheScrub

    Trade API

    Just added some new methods Accepting/declining trades both screens...
  23. TheScrub

    Trade API

    if you read the terms and conditions you may not use my code for any premium scripts.. do not be talking smack mr asshole
  24. TheScrub

    Trade API

    -Edit spammed threads due to lag my commenting got deleted not rewriting the commenting just read through it Example usage should be there soon Needs more methods like custom interactions which will be released later
  25. TheScrub

    Trade API

    just updated! The Trade class TradeItem Class: Example useage;
×
×
  • Create New...