Jump to content

Titan Rs

Lifetime Sponsor
  • Posts

    502
  • Joined

  • Last visited

  • Feedback

    100%

About Titan Rs

Profile Information

  • Gender
    Male

Recent Profile Visitors

2656 profile views

Titan Rs's Achievements

Mithril Poster

Mithril Poster (6/10)

110

Reputation

  1. How do you go about doing that lol Interesting idea, may try that if cant think of anything else, Thanks!
  2. public static Position pos = new Position(3018, 5013, 0); public void grabWine() { if ((System.currentTimeMillis() - wineTimer) > 3000) { if (getMagic().isSpellSelected()) { GroundItem wine = getGroundItems().closest("Wine of zamorak"); if (wine != null && wine.isVisible()) { winePosition = wine.getPosition(); if (wine.interact("Cast")) { wineTimer = System.currentTimeMillis(); amountOfWines++; } } else if (winePosition.isVisible(getBot())) { Rectangle rect = pos.getPolygon(getBot()).getBounds(); getMouse().move(rect.x + (rect.width / 2), rect.y); } else { log("Moving camera to wine"); getCamera().toEntity(wine); } } else { log("Spell not selected, Select telegrab"); getMagic().castSpell(Spells.NormalSpells.TELEKINETIC_GRAB); } } else { if (getMagic().isSpellSelected()) { GroundItem wine = getGroundItems().closest("Wine of zamorak"); if (wine != null && wine.isVisible()) { winePosition = wine.getPosition(); log("Wine is visible and spell selected"); } else if (winePosition.isVisible(getBot())) { Rectangle rect = pos.getPolygon(getBot()).getBounds(); getMouse().move(rect.x + (rect.width / 2), rect.y); } else { log("Moving camera to wine"); getCamera().toEntity(wine); } } else if (!getMagic().isSpellSelected()) { log("Spell not selected, Select telegrab"); getMagic().castSpell(Spells.NormalSpells.TELEKINETIC_GRAB); } } } Hi guys, Trying to hover over a table item. However, with the code above hovers on the tile below the table as the wine is considered a ground item. Any way around this? Thanks for any help
  3. Hi guys, HM for 10 accounts. I've created them but you have to Run them through tutorial island and then train mage till 25 hitpoins. 33mage is nearly 22hp if that helps for estimate. You would have to bond the account aswell. and then do the training. How much excluding bond price would you be able to do this for. I will then pay you your quote plus 10x bond price in one lump sum before or after depending on ur rep. You will then have to distribute the money to the accounts for bond and supplies. Hopefully done in the next 24 hours Thanks
  4. Hi mate, sounds good. Cant message you through osbottho for some reason. Add my discord? Jona #5302
  5. Account created with email etc - Bonded Witches House 35 mage. NO BOTTING Side-note: Will my accounts get locked? let me know prices including you guys buying the bond, supplies. Thanks Discord is Jona#5302 - Going to be in an hour so soz if dont respond till tommos
  6. lmaooo that was dumb
  7. Hi guys So i'm trying to traverse a dungeon that's a very windy path. At the start of the path. it just try's to skip major parts of the path and then the player stands still against the wall stuck. Anyway around this? Here's my code. Any help appreciated. This isn't the actual dungeon becuase i don't really want to give away my method. The dungeon i have has gates hence the code below public boolean walkToDestination(final Position[] positions, final BooleanSupplier bc, final boolean walkExact){ WalkingEvent walkingEvent = new WalkingEvent(); walkingEvent.setPath(new LinkedList<>(Arrays.asList(positions))); walkingEvent.setBreakCondition(new Condition() { @Override public boolean evaluate() { return bc.getAsBoolean(); } }); if (walkExact) walkingEvent.setMinDistanceThreshold(0); walkingEvent.setMiniMapDistanceThreshold(0); walkingEvent.setEnergyThreshold(random(5, 15)); return execute(walkingEvent).hasFinished(); } In code walkToDestination(Paths.TOPSECRETPATH, () -> getInventory().contains("Lobster") && (getSkills().getDynamic(Skill.HITPOINTS) < (getSkills().getStatic(Skill.HITPOINTS) / 1.5) || ((getObjects().closest(o -> o != null && o.getName().contains("Gate") && o.hasAction("Open") && getMap().distance(o) < 5) != null))), false);
  8. Does anyone sell these? If so let me know looking to buy a 100 Thanks
  9. Hi guys, Looking to incorporate database into my goldfarm to make it for automatic. As i understand you cant use JDBC to connect to mySQL for security reasons. I saw a bit on the forums about creating a PHP script and connecting to mysql database online on a webhost or something?. Would any of you guys be able to explain the process in a bit more detail? Any help is greatly appreciated
  10. Message me on discord Titan-Rs#4862 if you interested
×
×
  • Create New...