Jump to content

Medusa

Scripter II
  • Posts

    711
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Medusa

  1. Only problem with this would be that the boundingboxes sometimes are too big. public static void clickObject(MethodProvider api, RS2Object o, boolean rClick) { int x = (int) o.getModel().getBoundingBox(o.getGridX(), o.getGridY(), o.getZ()).getX(); int y = (int) o.getModel().getBoundingBox(o.getGridX(), o.getGridY(), o.getZ()).getY(); api.getMouse().click(x, y, rClick); } That will get the boundingbox of an object and click it, but if it's a ladder or some shit it will misclick a lot
  2. Make your own method using mouse.click - You would have to calculate pos etc. yourself, but that's relatively easy.
  3. no If it runs java programs then yes
  4. Gib me beta. I don't have acc, but I want script
  5. You can probably get Project's Script Factory and make it yourself
  6. Medusa

    mPlanker

    Don't really wanna "crash" the premium scripts
  7. Bro. Why are you stealing my script names. mScriptName is trademarked by me bro...
  8. Any new pc component and a decent graphics card. Good internet connection is a must You can basically stream on anything these days... You just need a decent connection
  9. What about @Juhnaz for helper?
  10. @Patrick Sorry for mentioning. Felt like it was okay to do tho. EDIT: It wasn't sorry.
  11. The thread title sounds like a product title on wish.
  12. I feel like this is gravedigging my dude And now I'm doing it too :(((
  13. Medusa

    mPlanker

    Bot smart That's all I can say. Bot like you'd play.
  14. Always stage a hijack before you bot any important account That way you'll have a higher chance of getting unbanned
  15. You could make a list of worlds yourself. Here is a snippet of what you could do (Nothing in here has to be static). public static ArrayList<Integer> worlds = new ArrayList<Integer>(); public static ArrayList<Integer> blockedWorlds = new ArrayList<Integer>(); @Override public void onStart() throws InterruptedException { blockWorlds(); getWorlds().getAvailableWorlds(false).forEach(w -> { if (!w.isMembers() && !w.isPvpWorld() && !blockedWorlds.contains(w.getId()) && getWorlds().isWorldAllowedForHop(w)) { worlds.add(w.getId()); } }); log(worlds.size() + " worlds added to hop list."); } //To block worlds you just add to the array of integers called b static int[] b = {318, 400, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 443, 462, 463, 512, 535, 536}; public static void blockWorlds() { for (int i : b) { blockedWorlds.add(i); } } Then you could make a custom method to get a random world etc. Not quite sure which worlds are blocked here, but it blocks league worlds (So they won't be added to worlds arraylist)
  16. Dear Juggles, It hurts me to say this, but I have been diagnosed with Scripter 1 syndrome. Doctors say I have a few months left of scripter 1, then it'll grow to scripter 2 syndrome. Sincerely, Medusa (Sidenote: I have absolutely nothing to do right now, so I did this)
  17. Medusa

    AIO MTA

    nah you help him fix it
  18. Malcolm needs something... bigger. He needs special treatment, and only I can give him that.
×
×
  • Create New...