Everything posted by FearMe
- Fastest 99?
-
How famous is the person above you ?
nitro WHO?
-
Remaking premium scripts for free !
You can especially get aids through anal...
-
Need to borrow 70+ fletching account
I can lend you my account if you give me the source so I can make my own fletching script better and keep it free h3h3h3h3
-
How famous is the person above you ?
0
- 500k + PH Script :)
- 500k + PH Script :)
-
How To Change Your Script Mouse Cursor
But then you can just check if its at (-1, -1) and don't render it when it is, so you don't get the image on the top left :P
-
The only non-vip/sponsor with verified Transactor.
noice
-
14 mod applications.
- Free Graphic Designs
Hey, could you make a thread layout for my fletching script? http://osbot.org/forum/topic/35965-fearfletcher-currently-the-only-free-fletcher-out-there/- How To Change Your Script Mouse Cursor
int mX = client.getMousePosition().x; int mY = client.getMousePosition().y; Do both those not just return -1 if the mouse is outside the screen?- Rewriting proper scripts
- Has Anyone Got A Skeleton Of A Fletching Script?
sAIO Fletcher gave me a really good idea how to make a fletching script, you can look at my fletcher script source code too, it works great as far as I'm aware.- Get zybez price method.
Totally forgot that some items have a " ' " in the name, plus sign works fine though.- Get zybez price method.
This is more for stuff like calculating money gained per hour, nothing big. If i recall correctly there's a full-fletched library on like the 2nd or 3rd page of this subforum.- Get zybez price method.
Have fun. /** * @author FearMe * @param name the exact item name * @return the price(not 100% accurate) * @throws IOException */ private int getPrice(String name) throws IOException { if (name.length() <= 3) return 0; URL url = new URL("http://forums.zybez.net/runescape-2007-prices/api/item/" + name.replace("+", "%2B").replace(' ', '+').replace("'", "%27")); URLConnection con = url.openConnection(); con.addRequestProperty("User-Agent", "Mozilla/5.0"); BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())); String line = ""; String inputLine; while ((inputLine = in.readLine()) != null) line += inputLine; in.close(); if (!line.contains("average\":\"")) return 0; line = line.substring(line.indexOf("average\":\"") + "average\":\"".length()); line = line.substring(0, line.indexOf("\"")); return (int) Math.round(Double.parseDouble(line)); }- Ha Jagex Blocked players with JRE
JRE is mandatory for any java application, this would mean no one could play.- XP Checking class - makes sure your script doesn't get stuck.
What? lol- XP Checking class - makes sure your script doesn't get stuck.
I know how to do it, just didn't bother putting it in :P- XP Checking class - makes sure your script doesn't get stuck.
Please note that Java is not my main programming language so excuse me if I did anything inefficiently or wrong. Just chuck this class in your script class, call it on #onStart() like this; private XPCheck x; public void onStart() { x = new XPCheck(Skill.MAGIC, Skill.SMITHING); x.start(300); } Also, make sure to call XPCheck.cancel() in your #onExit(), or it will keep checking, even when you end the script manually.- Smoking rock detection
What I did was check for the closest NPC by name, and if the rock you're currently mined changed to an NPC(it changes to an NPC when it's smoking, at least it's like this way with Ents), switch to another rock(can use closestObject... because it doesn't return the smoking rock/ent).- Bronze - Need help!
Don´t play garen, he's worthless. - Free Graphic Designs