Jump to content

Gold Scripts

Members
  • Posts

    574
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Gold Scripts

  1. Just let it slide, fake friends aren't worth your time.
  2. Gold Scripts the name, Bottings the game

  3. No worries man, trust me I know how it goes Take your time bud
  4. Nice! looks good
  5. Welcome to Osbot!
  6. Gold Scripts

    Query API

    Nice, looks pretty good
  7. [icon or signature] Signature [Name you want it to say] Gold Scripts [Font: (optional, but thicker fonts look better in sigs;leave blank if you don't really give a shit)] Whatever looks good [Overall theme] Gold theme; maybe throw an HD af crown in there? [Graphic (optional)] [Any other instruction/preferences] Id like "Click to view scripts or request a free trial" somewhere in there
  8. I like high class one
  9. That is pretty cool, very nice feature
  10. Looks just like the father lol. Congrats btw!
  11. Entity tree = getObjects().closest("Yew tree"); Area AreaY = new Area(1, 2, 3, 4); Area AreaX = new Area(2, 3, 4, 2); if (!myPlayer.isMoving() && !myPlayer.isAnimating()) { if (tree != null && AreaY.contains(tree.getPosition())) { //if tree exists & is in AreaY if (AreaY.contains(myPlayer().getPosition())) { //if we are in AreaY tree.interact("chop"); //chop return true; } else getWalking().walk(AreaY.getRandomPosition());//We aren't in Area Y->walk there } else if (tree != null && AreaX.contains(tree.getPosition())) { //if tree exists & in AreaX if (AreaX.contains(myPlayer().getPosition())) { //if we are in AreaX tree.interact("chop"); // chop tree return true; } else getWalking().walk(AreaX.getRandomPosition()); //we aren't in Area X->walk there }
  12. If you are making that much, I'd say it would probably be a good idea
  13. Just looked at your build, I like seeing what other people build on PC part picker. However I do not know where to get those parts for cheap, here is the build I'm planning on making this month http://pcpartpicker.com/p/jWsNrH
  14. Yes, the 70 agility pipe shortcut is supported
  15. Thank you, I will be sure to keep this post updated as to when the Lite version is included (Should be soon). I've already finished it
  16. Oh no, it will work as long as you have the BDK. By "lite" I mean it doesn't have all of the features that the SDN version has.
  17. Hello! Gold BDK (OG's Blue Dragon Killer), will soon be receiving an added BONUS! I have decided to include a free Lite Version of my GDK with the purchase of the BDK --------> Please note the GDK Lite version will not contain all of the features included in the premium/SDN version, however it still has the same functionality. Gold GDK Lite Features Loot options for Green Dragonhides & Dragon bones Eating (All food supported) Varrock Teleport tablet banking method Anti-PK World Hopping Special Attacks
  18. Happy new year!
  19. Really looking forward to what 2016 brings
  20. My prayers have been answered
  21. private void wealth() { if (!getEquipment().isWearingItem(EquipmentSlot.RING, "Ring of wealth") && getEquipment().interact(EquipmentSlot.RING, "Grand exchange")) { Position current = myPlayer().getPosition(); new ConditionalSleep(1500, 2000) { @Override public boolean condition() { return !myPlayer().getPosition().equals(current); } }.sleep(); } else { for (Item item : getInventory().getItems()) { if (item != null && item.getName().contains("wealth") && item.getName().matches(".*\\d+.*")) { item.interact("wear"); new ConditionalSleep(1500, 2000) { @Override public boolean condition() { return getEquipment().isWearingItem(EquipmentSlot.RING, item.getId()); } }.sleep(); break; } } } } !getEquipment().isWearingItem(EquipmentSlot.RING, "Ring of wealth") This ensures the script doesn't attempt to teleport with a ring that has no charges. Probably isn't necessary, however nice code man!
×
×
  • Create New...