Jump to content

Naked

Suspended
  • Posts

    1158
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Naked

  1. Hey you're trash

    1. Muffins

      Muffins

      shut up you fat piece of shit and get back to slaving my 7-days

    2. Naked
  2. https://oldschool.runescape.wiki/w/Maximum_hit
  3. @Malcolm No personal attacks on other members or some shit, dumbass.
  4. God forbid making life easier on people and minimizing confusion by having an on-site cancel button for your subscription, amirite? I wasn't aware of this. I'm not familiar with the IPB platform, but all you would need access to is the subscription plan id to make a workaround. https://developer.paypal.com/docs/subscriptions/full-integration/plan-management/#activate-plan
  5. But people don't know that they have to do that. I wouldn't imagine it would take more than an hour of dev work to add a button under subscriptions
  6. Would probably save a lot of headaches for everyone involved.
  7. It sure would be a shame if your account was hardcoded to not sell 7day accounts.
  8. Hey uhh, your GE code is sad and you should feel bad about it.
  9. Bruh like 95% of the accounts are prolly banned by now lmao
  10. That's a Jagex login screen update. Gotta fix that yourself
  11. Naked

    Runefest

    Matching osbot onsies?
  12. Right so enter the position and this code should work for you. This uses this sleep class: Position shop = new Position(###,###,###); if (myPlayer().getPosition().distance(shop) > 10) { WebWalkEvent event = new WebWalkEvent(shop); execute(event); } NPC ShopKeeper = npcs.closest("Shop keeper"); if (ShopKeeper.exists()) { if (ShopKeeper.isVisible()) { if (!store.isOpen()) { ShopKeeper.interact("Trade"); Sleep.sleepUntil(() -> store.isOpen(), 5000); } } } if (store.isOpen()) { if (!inventory.contains("Spade")) { Sleep.sleepUntil(() -> store.buy("Spade", 5), 5000); } }
  13. You can ignore those in your case. I just copy and pasted some code. The s is short for script, a variable in my Task class. The class this was from extended the Task class. TL;DR ignore it
  14. Position shop = new Position(###,###,###); if (s.myPlayer().getPosition().distance(shop) > 10) { WebWalkEvent event = new WebWalkEvent(shop); s.execute(event); } NPC ShopKeeper = s.npcs.closest("Shop keeper"); if (ShopKeeper.exists()) { if (ShopKeeper.isVisible()) { if (!s.store.isOpen()) { ShopKeeper.interact("Trade"); Sleep.sleepUntil(() -> s.store.isOpen(), 5000); } } } if (s.store.isOpen()) { if (!s.inventory.contains("Spade")) { Sleep.sleepUntil(() -> s.store.buy("Spade", 5), 5000); } }
×
×
  • Create New...