Everything posted by Soldtodie
-
Phishing private message!
Don't click on this link. It's an phishing link its not the real runescape page.
-
Jagex: bot detection methods.
Which statement is true?
-
New Shop API
Nice, it's really handy. I honor you that you comment your code.
-
SLooter - All in one looter
No it's a looter.
- SLooter - All in one looter
-
SLooter - All in one looter
Hey guys, today i will show you my new project SLooter. SLooter is an all in one looter. You will be able to record and save your path. At the moment it's under development. Features at the moment: Record your own path with ladders or staircases. Automatic door handler Fast looting Set your own looting distance Better and faster interaction with objects Banking GUI Features under development: Record path with agility shortcuts Save and load path Paint Here is a little video where you can see the record path function. Now it's faster.
-
Jagex got a plan for bots later today?
Here: http://services.runescape.com/m=forum/forums.ws?317,318,464,65309304 I think it's shit.
-
How famous is the person above you ?
1
- item dump
-
BETA v1.7.68
All who get this error download the client again until it works.
-
Some inventory methods
Nice! How you get the declared fields?
-
SWoodCutter
I think i will write the script and then i will decide if i make it open-source or not.
- SWoodCutter
- SWoodCutter
-
SWoodCutter
Hey guys, I will make a AIO WoodCutter but i don`t know if i will make it open or closed source. Please write what you think what i should do under this thread. Thanks.
-
Hoppable Worlds Array
I know. Now use random(3); The highest amount you can get is 2.
-
Hoppable Worlds Array
Sorry but this is not right: random(WORLDS.length() - 1) An example: random(28); This can gives you the number 0 or the number 27 and all numbers beetween this two numbers. But not the number 28. This is right: random(WORLDS.length())
-
Hoppable Worlds Array
You can test it. int test = -999; while((test = random(WORLDS.length)-1) != -1) { } log("It's " + test + " !");
-
Hoppable Worlds Array
What is when random(WORLDS.length) = 0 is ? You subtract 1 then its -1. A array with -1 is impossible. Don't subtract 1 then it will work.
-
Count To 10,000!
- Withdraw without scrolling bug
I hope anyone will give credits when he used this in his script.- Withdraw without scrolling bug
No problem. I hope it can help you.- Withdraw without scrolling bug
public boolean withdrawX(int itemID, int amount) throws InterruptedException { if(!client.getBank().isOpen() || !client.getBank().contains(itemID)) { return false; } int firstVisibleSlot = -1; int lastVisibleSlot = -1; int itemSlot = client.getBank().getSlotForId(itemID); if(!client.getBank().isSlotVisible(itemSlot)) { for(int i = 0; i < 1000; i++) { if(firstVisibleSlot == -1 && client.getBank().isSlotVisible(i)) { firstVisibleSlot = i; } else if(firstVisibleSlot != -1 && !client.getBank().isSlotVisible(i)) { lastVisibleSlot = i - 1; break; } } if(itemSlot >= firstVisibleSlot && itemSlot <= lastVisibleSlot) { //Visible //No Scrolling! } else { //Invisible //Scrolling! if(itemSlot < firstVisibleSlot) { //Scrolling up! MouseDestination md = new RectangleDestination(new Rectangle(481, 60, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } else if(itemSlot > lastVisibleSlot) { //Scrolling down! MouseDestination md = new RectangleDestination(new Rectangle(481, 272, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } } } return client.getBank().withdrawX(itemID, amount); } public boolean withdrawAll(int itemID) throws InterruptedException { if(!client.getBank().isOpen() || !client.getBank().contains(itemID)) { return false; } int firstVisibleSlot = -1; int lastVisibleSlot = -1; int itemSlot = client.getBank().getSlotForId(itemID); if(!client.getBank().isSlotVisible(itemSlot)) { for(int i = 0; i < 1000; i++) { if(firstVisibleSlot == -1 && client.getBank().isSlotVisible(i)) { firstVisibleSlot = i; } else if(firstVisibleSlot != -1 && !client.getBank().isSlotVisible(i)) { lastVisibleSlot = i - 1; break; } } if(itemSlot >= firstVisibleSlot && itemSlot <= lastVisibleSlot) { //Visible //No Scrolling! } else { //Invisible //Scrolling! if(itemSlot < firstVisibleSlot) { //Scrolling up! MouseDestination md = new RectangleDestination(new Rectangle(481, 60, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } else if(itemSlot > lastVisibleSlot) { //Scrolling down! MouseDestination md = new RectangleDestination(new Rectangle(481, 272, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } } } return client.getBank().withdrawAll(itemID); }- SClaySoftener
I think more than 1100 a hour.- SClaySoftener
@Cloudnine Sry but I release it for free because I want no money for my scripts. Update: Release! - Withdraw without scrolling bug