Everything posted by whipz
-
fresh accounts
how much you looking to pay ea ? and how many you want ?
- Shift Drop
-
Paying RSGP for Video Clip
use a vpn ?
- Muling snippet?
-
Hopping worlds
i did ): still didnt work just skipped it all together it said it was going to but didnt I had 10 worlds in total so 0 - 9 is 10 im sure?
-
Hopping worlds
The case switches worked better; the bottom one seems to skip world hoping (: thanks so much mate; it doesnt go to wrong worlds now; and if it gets stuck I can set it to continue (:
-
Hopping worlds
Thanks mate Ill give it a try ! That could be the one I was looking for I saw houses which was a remake of this one I think
-
Hopping worlds
it does but will I need to add to every line ? or can I do it to before the first random ?
-
HHopper | Hop to a specific world + interrupt condition
sweet will this try to log into the world your already in by accident ?
-
Hopping worlds
Hey guys; I need to be able to hop to worlds basically everytime; for some reason the Hopper supplied by OSbot is a tad buggy and sometimes doesnt actually go hop worlds or hops to a world it cant EG 500 lvl or members if f2p account is used; I have tried to come up with something that could possibly help me; but Im not sure how to prevent it from trying to log into the world it currently is if the random lands on that world; int rand = random(10); if (rand == 1) { hopper.hop(1, () -> false); } if (rand == 2) { hopper.hop(8, () -> false); } if (rand == 3) { hopper.hop(16, () -> false); } if (rand == 4) { hopper.hop(26, () -> false); } if (rand == 5) { hopper.hop(35, () -> false); } if (rand == 6) { hopper.hop(82, () -> false); } if (rand == 7) { hopper.hop(83, () -> false); } if (rand == 8) { hopper.hop(84, () -> false); } if (rand == 9) { hopper.hop(93, () -> false); } if (rand == 10) { hopper.hop(94, () -> false); } any feedback would be sweet (: or if someone else has a snippet that could be useful here please post (:
-
HHopper | Hop to a specific world + interrupt condition
How would I go about using this to just randomly hop to certain worlds ? eg f2p ?
-
Explv's Scripting 101
@Maldesto sticky this mate; One of the best tutorials out
- Let's play a game
-
Godlike proxy during disconnections
same here man Using proxies from LA or Miami seem to work fine for me no dc's on my home IP tho from AUS dc cant even log in 0.o
-
OSBOT stuck on downloading rs2
Yeah but can you load into the game no problems ? Download is different to logging in.
-
Juggles AIO Shop Buyer
gets stuck on trying to world hop to worlds with 500 skill level enough tho i have 0 skills ): also paint is so out when it hopes i have 145 things in bank says i have 580 cause world hops count the invent again
-
Help Please
Yeah man I just completely forgot haha feel like a douche haha thanks tho mate for all your help (:
-
Help Please
HOLY FUCK IM STUPID...... I just did a test final String test = inventory.getIteminSlot(27).toString(); prints out slot 28.... I totally forgot that it goes 0 1 2 3 4 5 etc.... fuck sorry guys you were all right...
- Help Please
-
Help Please
if (getInventory().interact("Use", "Knife") && new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getInventory().isItemSelected(); } }.sleep()) { final Item item = getInventory().getItemInSlot(27); if (item != null && item.interact()) { log("Attempting to use slot 27"); item.interact("Use"); } } This is what I have and for some reason it will log attempting to use slot 27 but it just stands there and does nothing ):
-
Explv's Scripting 101
love the new update cant wait to full read it all thanks again for all your work mate !
-
Help Please
Thanks mate Ill try when I get home from work !
-
Help Please
I dunno what I am doing wrong then )':
-
Help Please
Yeah i changed the log to using slot 27 it just sits the logging that constantly; was I ment to add something else to make it click the slot ? i just assumed .interact even in an if would run the interact part as well ? or am i mistaken
-
Help Please
Unfortunately this still doesn't work ): It says its going to use it but just spams my console saying using slot 27 but doesnt )':