Everything posted by TheScrub
- Join OSBot Raidcall
-
Join OSBot Raidcall
alot of people in here tonight
-
OSBot TeamSpeak Client
i remember when mohiom made a ts3 for osbot not one joined it and died..
-
BIGGEST PROGGY IN OSBOT HISTORY WRECKED.....
40k tabs probably 1 full 24hrs to sell
-
BIGGEST PROGGY IN OSBOT HISTORY WRECKED.....
presuming those are cammy tabs (math related guess) if he managed to sell those at 1k ea. I would presume the profit to be in margin of 20-21m give or take 1m this is 116 hrs which is 16% more than 100hrs a little more than just past
- Trade API
-
Banking api ~ almost finished
smart but i just relised you can easily use math to click along the to the correct spot..
-
Banking api ~ almost finished
good idea but also this will be a good open source to teach people how to use scroll bars in relation to runescape this can be useful for other stuff
-
Scrub's Auto Fighter
client revision .76 is stuffed if you run it on .71 it will work fine
-
Banking api ~ almost finished
i don't like the scrolling so i'm going to make it not fail scrolling but it's going to click the little buttons so it will be alil slow
-
Trolling the scripters that made ankous scripts that are paid.
acerd is right here is most of the items that ankous drop that you would need to add items with # at the end are stackables
-
OSBot 2 Final ETA!
it's monday here....
-
Banking api ~ almost finished
need to make scrolling methods public boolean bankIsOpen() { if (script.client.getInterface(12) != null) { RS2InterfaceChild c = getChild(12,21); if (c != null && c.isVisible()) { return true; } } return false; } private RS2InterfaceChild getChild(int parent, int child) { if (script.client.getInterface(parent) != null) { RS2InterfaceChild c = script.client.getInterface(parent).getChild( child); if (c != null && c.isVisible()) { return c; } } return null; } public int getScrollHeight() { if (!bankIsOpen()) { return -1; } return getChild(12, 6).getScrollPosition(); } public int getColumn(int slot) { return slot / 8; } public int getRow(int slot) { return slot % 8; } // you can view the first 6 columns at the height of 0 public int getMinScrollHeightNeeded(int slot) { return getColumn(slot) > 5 ? (getColumn(slot) - 5) * 37 : 0; } public int getMaxScrollHeightNeeded(int slot) { return getMinScrollHeightNeeded(slot) + (37 * 5); } public boolean slotVisable(int slot) { return (getScrollHeight() >= getMinScrollHeightNeeded(slot) && getScrollHeight() <= getMaxScrollHeightNeeded(slot)); } public boolean needToScrollUp(int slot) { return !slotVisable(slot) && getScrollHeight() > getMaxScrollHeightNeeded(slot); } public boolean needToScrollDown(int slot) { return !slotVisable(slot) && getScrollHeight() < getMinScrollHeightNeeded(slot); } public boolean needToScroll(int slot) { return needToScrollDown(slot) || needToScrollUp(slot); } public boolean contains(String item) { Item[] items = getBankItems(); if (items != null && items.length > 0) { for (Item i : items) { if (i != null && i.getName() != null && i.getName().equalsIgnoreCase(item)) { return true; } } } return false; } public boolean contains(int item) { Item[] items = getBankItems(); if (items != null && items.length > 0) { for (Item i : items) { if (i != null && i.getId() > 0 && i.getId() == item) { return true; } } } return false; } public int getSlotForName(String name) { if (bankIsOpen()) { Item[] array = getBankItems(); for (int i = 0; i < array.length; i++) { if (array[i] != null) { if (array[i].getName() != null) { if (array[i].getName().equalsIgnoreCase(name)) { return i; } } } } } return -1; }
-
Scrub's Auto Fighter
i already did if you read the previous page revision .76 of the client is the problem if you got .71 it will work fine
-
Scrub's Auto Fighter
quick progress report
-
Scrub's Auto Fighter
there is a menu on the gui called script settings you click it and click start script
-
Scrub's Auto Fighter
please redownload 4 patchs
-
Scrub's Auto Fighter
small patchs for looting bones/items and a version checker on start
-
Scrub's Auto Fighter
improving how i get the npcs
-
Scrub's Auto Fighter
this should be fixed with the getFacinging hook fixed by the admins it's in a menu titled "Script Settings"
-
Scrub's Auto Fighter
waiting on the broken client hooks to be fixed..
- Scrub's Auto Fighter
-
Bots down, so what are you doing now ?
- Scrub's Auto Fighter
if people could report problems / post progresses reports would help!- Scrub's Auto Fighter
it says health % not level - Scrub's Auto Fighter