Everything posted by atoo
-
Weird issue (Hill Giants)
Pretty much explains for itself, probably missed something easy but whatever. https://i.gyazo.com/0a7eda278dde65adb81946e74c60d26b.mp4 my code: So basically it walks down and starts walking to giantarea, but then suddenly starts climbing up (though i dont have any climb up code added yet???) Shit logic i know @Override public int onLoop() throws InterruptedException{ if(getInventory().contains("Trout")) { getWalking().webWalk(doorArea); } if(doorArea.contains(myPosition()) && !ladderAreaUp.contains(myPosition())) { Entity door = objects.closest("Door"); if (door.hasAction("Open")) { door.interact("Open"); sleep(3000); } } if(ladderAreaUp.contains(myPosition()) && !doorArea.contains(myPosition())) { Entity ladder = objects.closest("ladder"); if (ladder.hasAction("Climb-down")) { ladder.interact("Climb-down"); sleep(3000); } } if(ladderAreaDown.contains(myPosition())) { getWalking().webWalk(giantArea); } { } return random(500,1000); }
- How much do you trust
- Hello im new!111
- What scripts would you like to see?
-
What scripts would you like to see?
I can take a look on how u train / do it
-
What scripts would you like to see?
lol im not gonna do some quest, maybe later. is this what he was talking about?
-
What scripts would you like to see?
Dont you need some combat req's for caged ogre's?
-
What scripts would you like to see?
Do not have any account for that
-
What scripts would you like to see?
So since i wanna learn some more java, i want to ask people here @osbot what script they would like to see. Nothing too advanced, i will be releasing them too after i have finished them. Script 1 since thread (meme script) https://i.gyazo.com/f250c3d1a09b8b3078fd3c4db09840ec.mp4 Script 2 since thread WIP Script 3 since thread WIP Script 4 since thread WIP Script 5 since thread WIP
-
Tired as fuck, what am i doing wrong?
Ye i already fixed it, thanks though. Will steal some codenz from that
-
Tired as fuck, what am i doing wrong?
jesus christ, it just keeps interacting with karim & when i went to bank "manually" it opened it without depositing. Im pretty sure it fucks up at getState() (probably missed something, but im tired af) private State getState() { //this part is where it fucks up probably if(KebabGuy.contains(myPlayer()) || !getInventory().isFull()) return State.BUYING; else { if(!bankArea.contains(myPlayer())) { if(getInventory().isFull()) return State.WALKING_TO_BANK; } } if (bankArea.contains(myPosition())) { if (getInventory().isFull()) return State.BANKING; } return State.WALKING_TO_KARIM; } public int onLoop() throws InterruptedException{ switch (getState()){ case BUYING: log("******** ******** ******** KARIM"); NPC karim = getNpcs().closest("Karim"); if(karim != null){ karim.interact("Talk-to"); sleep(700); dialogues.clickContinue(); sleep(700); dialogues.selectOption("Yes please"); sleep(700); dialogues.clickContinue(); sleep(700); log("Buying some kebab dawg"); break; } case WALKING_TO_KARIM: log("Walking to Karim"); if(!getInventory().isFull()) getWalking().webWalk(KebabGuy); break; case WALKING_TO_BANK: if (getInventory().isFull()) getWalking().webWalk(bankArea); break; case BANKING: log("Banking"); if (!getBank().isOpen() || getInventory().isFull()) getBank().open(); else getBank().depositAllExcept("Coins"); break; } return random(600,800); }
- shut
-
Chatbot snippet
Anyone got a chatbot snippet i could take a look at? example: randomnerd: hello chatbot: hi Would like to implent it in my script just because i want to
-
Did i fuck up?
Why so, im botting it rn and its fine
-
Need some help with my deposit code
Thanks mate I always code messy lol, this will help a bit.
- JAD IN G.E
- Did i fuck up?
-
Need some help with my deposit code
I wrote that too, but i just thought if we include "axe" it wouldnt deposit it. Thanks though
-
Need some help with my deposit code
this is my deposit code when @bank, it deposit's my dragon axe too worked like 2 days ago but now i dont fkn know. getBank().depositAllExcept(item -> item.getName().contains("axe"));
- Did i fuck up?
- VOTE
-
Did i fuck up?
not really lol, i think i fucked up when i logged in without a proxy
- Did i fuck up?
-
Did i fuck up?
lol my main bot acc where i have everything is still fine, no need to rebuild
-
Did i fuck up?
2 bots on proxy (same proxy, located in germany) Main bot on home ip. So i botted last night (same script on all bots),today when i got to college i loaded up 1 bot, and started botting. Got permabanned after 30min or so, logged into my other bot without any client loaded and 10min after it got banned too. After that i logged into my main bot and never got banned. So my question is, did they ban me because i where in germany and then suddenly logged in again hours after in sweden? Im confused as fuck, im botting on my main atm and its fine. I also didnt use any proxy when i were in college and used the wifi that was there, so all bots were on same ip.