Jump to content

Fay

Members
  • Posts

    420
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Fay

  1. Updated original post. If there was support I would figure out a way to fix it.
  2. jangerberries made me 1.5m in an hour. Edit for more info. bunch of rope 10 agility dueling rings 1/8th the amount of rope idiots that dont know how to get jangerberries
  3. So what your guide is really saying is to change your PRIVATE IP address to affect your PUBLIC IP? Lol..
  4. "The past two weeks I've spent in the hospital mostly and in her parents house" Sad to hear, my mom has cancer. Caught it within the first 2 weeks though so she got lucky.
  5. Also with those stats you will want to bring (if you have +21 pray bonus) 25 dose of overload and rest p pots (4).
  6. Fay

    Postcount

    I'd think it would be great if spam actually reduced your post count by 1.
  7. Price drops? Thank you because I need to level slayer at black demons.
  8. Just realized you said exactly what I did but without giving any actual code..
  9. bringing suggestions not solutions.
  10. for(String loot : GUILoot){ loot.replace("[","").replace("]",""); }
  11. If you have enough people doing it (without the private ip part) yeah it could be effective but honestly there are better ways. I would appreciate the sub-forum of "Hacking/General" or whatever but I don't want to deal with the community that comes with it..
  12. To expand on this, you define an Area and then search that area for the object. To my point, I don't understand why you would need this functionality because you would never need to bank for anything at experiments in the first place lol because food lasts forever.
  13. I can see it now. Script Kiddy: "I'm going to DOS you!!" *opens up cmd ping <private IP> -t*
  14. Fay

    I lost VIP.

    Different time zones?
  15. >That last time I had a straight thought? He'd probably be in your dreams tonight.
  16. Yeah there is but you didn't ask for that, you just asked to fix the script .
  17. Let me guess it would turn the camera to the entity but not actually use the rod on the spot? This should fix it. Read my signature for my TOS lol. final String FISHINGSPOT_NAME = "Fishing spot"; final int rod = 11323; public int onLoop() throws InterruptedException { Player player = client.getMyPlayer(); Inventory inv = client.getInventory(); if (!client.getInventory().isFull()) { // If inventory is not full then fish Entity fishSpot = closestNPCForName(FISHINGSPOT_NAME); if (fishSpot != null) { if (fishSpot.isVisible()) { if (!player.isAnimating()) { inv.interactWithId(rod, "Use-rod"); selectOption(fishSpot, fishSpot.getMouseDestination(), "Use-rod"); sleep(200 + random(400)); } } else { client.moveCameraToEntity(fishSpot); } } } else { // If inventory is full then drop all except feathers and rod inv.dropAllExcept(314,rod); } return 50; }
  18. Lol, I'd believe it. But then again you didn't release it (the source I mean).
  19. Could probably be done better but I don't think there is a built-in function to find it nor did I see any PC bots utilizing it. (Yes this was originally made for automatic world hopping in PC.) The Code for mode() was found here: http://deveshsharma.info/2013/07/16/find-most-common-element-in-a-list-in-java/ ^ because I didn't want to make it. import java.awt.Graphics; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.ui.RS2InterfaceChild; import org.osbot.script.rs2.ui.Tab; private static int mode(List < Integer > list) { Map < Integer, Integer > map = new HashMap < Integer, Integer > (); for (int i = 0; i < list.size(); i++) { Integer frequency = map.get(list.get(i)); if (frequency == null) { map.put(list.get(i), 1); } else { map.put(list.get(i), frequency + 1); } } int mostCommonKey = -1; int maxValue = -1; for (Map.Entry < Integer, Integer > entry: map.entrySet()) { if (entry.getValue() > maxValue) { mostCommonKey = entry.getKey(); maxValue = entry.getValue(); } } return mostCommonKey; } public int chatWorld() throws InterruptedException { openTab(Tab.CLANCHAT); List < Integer > chatWorlds = new ArrayList < Integer > (); int hopWorld = -1; RS2InterfaceChild chatbox = client.getInterface(589).getChild(5); RS2InterfaceChild[] people = chatbox.getChildren(); for (RS2InterfaceChild world: people) { if (world.getMessage().contains("World ")) { chatWorlds.add(Integer.parseInt(world.getMessage().replace("World ", ""))); } } hopWorld = mode(chatWorlds); return hopWorld; }
  20. Replying to this thread because I may have found a solution that would work for this.
×
×
  • Create New...