Jump to content

Extreme Scripts

Trade With Caution
  • Posts

    10702
  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    96.2%

Everything posted by Extreme Scripts

  1. If you purchase a script from the store it should automatically be added to your account... Sometimes it takes an hour or so, if it's not there within one hour of purchase please contact @Maldesto
  2. You got some crazy skills
  3. You would need to use a scanner/buffered reader for this. Very simple assignment. private String fName; private String sName; private double pay; private double increase; private BufferedReader br; private void readData(){ br = new BufferedReader(new InputStreamReader("FiLE PATH")); String input = ""; while((input = br.readLine()) != null){ String[] fields = input.split(" "); sName = fields[0]; fName = fields[1]; pay = Double.parseDouble(fields[2]); increase = Double.parseDouble(fields[3]); } } Then you would have to use a PrintWriter/FileWriter for the output part... Sure you can figure out the rest
  4. This version seems to be a lot more stable on windows as well in terms of detection etc, good job ^_^
  5. I haven't had any issues with attaching to the OSBuddy client on the newest mac version.
  6. Finally it's here, great job @MGI ^_^
  7. Yeah mirror client at the minute is only supported by windows unfortunately. Linux/Mac are soon to come ^_^
  8. He's begginner, can't make him eat big macs when he's only ready for cheese burgers
  9. i meant use filters; NPC chicken = getNpcs().closest(new Filter<NPC>({ @Override public boolean match(NPC npc){ return npc.getName().equalsIgnoreCase("chicken") && !npc.isUnderAttack() && getMap().canReach(npc) && npc.getHealth() > 0; } }); Don't copy and paste cos I wrote that with no code assist so the filter could be wrong. This in essence will return the closest chicken that you can attack, is reachable, has health > 0, not currently being attacked. Of course you can tweak the boolean as you wish but that's all you need really. Much more efficient/cleaner/easy to read & understand
  10. Well firstly, you don't need to iterate the npc's in the region to get the best one you can just use filters for that and return the npc best suited based on the conditions you provide. 1) Get the instance of the NPC 2) Check if your player is interacting with it 3) If not attack if yes, sleep I would give you the code for it but then I don't think you would learn from it unless you familiarize yourself with the api by digging through it.
  11. Yeah but I don't remember this back in the old days :p
  12. o.0 never even knew this was part of a DT thing
  13. You most likely cancelled it and forgot to cancel it on PayPal as it's a 2 step cancellation fee. I would suggest you cancel it on paypal as well if you haven't done so already and apply here for re-imbursement/activation: http://osbot.org/forum/forum/150-refund-requests/
  14. Yes it will, the whole idea of mirror is that it attaches itself to an existing instance of Runescape to make it seem as if you are playing from the client you are running it on.
  15. o.0 I think it looks good bro. Only thing I would say is the fields are too darkened and not really readable, if you lightened those background rectangles and changed the text colour (of the title)it would work
  16. Not really sure what it could be then really, try using a different client/webclient and it could possibly work
  17. Have you made sure you just have 1 java version installed? Is your VPS windows cos mirror only works on windows atm.
  18. Very nice for a first attempt, #road2Designer ^_^
  19. Liking the signature top notch
×
×
  • Create New...