Everything posted by whipz
- Stealth Quester
-
Stealth Quester
what else do I need ? like i said thats all that comes up in logger /:
-
Stealth Quester
[INFO][Bot #1][02/22 03:32:51 PM]: [DEBUG] Running in debug mode [INFO][Bot #1][02/22 03:32:51 PM]: [DEBUG] Executing stage: 2 [INFO][Bot #1][02/22 03:32:55 PM]: [DEBUG] Running in debug mode [INFO][Bot #1][02/22 03:32:55 PM]: [DEBUG] Executing stage: 2 [INFO][Bot #1][02/22 03:33:01 PM]: [DEBUG] Running in debug mode [INFO][Bot #1][02/22 03:33:01 PM]: [DEBUG] Executing stage: 2 Hey mate thats all i get for vampire slayer gets stuck talking to guy that wants a beer, do I need to give you more info ?
-
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 )':
-
Help Please
Thanks mate (: ill test it when I get home appreciate the help !
-
Im a VIP member and cant use mirror mode?
its expires 1/19/17 im pretty sure its the 18 of feb you seem to think its January still ?
-
Help Please
Still need some help on this ):
-
[SmartAPI] Mouse / Camera / Webwalking API
Mate I think its almost worthy now xD haha; However I do get what you mean; Will it be open source or just open to the public ? if its open source wouldnt some of the better scripter (meaning better than me, not you as this is great) be able to help you not only speed up the project but give you some outsiders perspective ? Make it so only you can commit the updates if you feel them worthy ? Just a suggestion as some of this stuff almost looks ready xD and im so excited I just cant hide it !
-
Help Please
this is what I have so far but it just keeps clicking on the knife. Im so lost ): if (inventory.contains(item)) { getInventory().getItem("Knife").interact("Use"); new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getInventory().isItemSelected(); } }.sleep(); if (item != null) { getMouse().click(new InventorySlotDestination(getBot(), 27)); } else { item.interact("Use"); } sleep(random(500, 750)); } } For some reason tho it just seems to click the knife only; It never does anything else ): and I obviously have the item stated else where I can get it click on each item individually but I want to only click on 27 till all 27 items are finished
-
Help Please
God that made me laugh so much for some reason hahaha Thanks mate gonna test that now !
-
Help Please
Not sure how exactly I am ment to use this; everything I have tried says I need to create a method; what is bot ?
-
[SmartAPI] Mouse / Camera / Webwalking API
Yeah I have its still not the greatest API tho
-
how to walk a random path to destination?
thats the best I have at the moment ): Sorry mate Ill have a look in morning its a tad late here ): thats the best I have at the moment ): Sorry mate Ill have a look in morning its a tad late here ): edit This might help WalkingEvent() Creates a walking event for which a path will need to be set with the setPath() methods. WalkingEvent(Area area) Creates a walking event with a minDistanceThreshold of 2 and a miniMapDistanceThreshold of 5 to a random location within the given area. WalkingEvent(Entity entity) Creates a walking event with a minDistanceThreshold of 2 and a miniMapDistanceThreshold of 5 to the location of the given entity. WalkingEvent(Position position) Creates a walking event with a minDistanceThreshold of 2 and a miniMapDistanceThreshold of 5 to the location of the given position.
-
[SmartAPI] Mouse / Camera / Webwalking API
God I hope you release at least the Grand Exchange stuff for public xD ours currently isnt that great
- Abort all Grand Exchange Offers
-
how to walk a random path to destination?
there used to be something in an old bot walkPath(path, 4, 4) i dunno if its there still but that would randomize path by 4 wide 4 high
-
Help Please
Hey mate; Unfortunately this seems to just pick up whats in slot 27 (when i use 27) which doesn't really work the way I want as it starts at slot one again; I only it want it to use it on item slot 27, as this is faster and more realistic I can pm you what I am doing just want to keep it a little private atm