Hey, I have a problem with the quest Sheep shearer. My character keeps going inside and then clicking on the farmer back and forth for 5 minutes now.
There is also a problem when trying to cook shrimps on the edgville range. The bot logs out. It works on the edgville stove.
Thanks for the script
I there a way I can get the password from Explv bot manager? Or do I have to type it as string and compile the jar again?
EDIT: I noticed by right clicking on my configuration and then "Show command", I see the email and pass. I just don't know how to retreive it in my script.
My custom script works with osbot, but not with explv bot manager I get ClassNotDef error with mysql-connector-java:5.1.40
I don't really know what to do at this point...
EDIT: Noob error... I had the dependency set as "Extract into output root" instead of "Put into output root".
EDIT2: Turns out if I dont "Extract into output root", its not finding the library "Put into" does not work or I need another way to find it.
It's not launching for me anymore
EDIT: Launching from the console, I noticed a NoClassDefFound. I deleted my script from the scripts folder and it worked instantly.
Nice script! How do you run 2 instances of it through explv? It launches 2 bots in different windows and one is shut down due to me not being VIP.
Thanks!
InteractionEvent AcceptTradeEvent = new InteractionEvent(t_LastRequestingPlayer, "Trade with");
AcceptTradeEvent.setWalkTo(false);
AcceptTradeEvent.setWalkingDistanceThreshold(0);
AcceptTradeEvent.setMaximumAttempts(1);
//Accept the trade
if(execute(AcceptTradeEvent).hasFinished()){
new ConditionalSleep(3000, 500) {
@Override
public boolean condition() throws InterruptedException {
//Interrupt the pause if I'm trading with the Player
return getTrade().isCurrentlyTrading();
}
}.sleep();
}
I want the bot to stay in place, to not move at all. I thought this would achieve what I wanted. I can't figure it out...
If someone trades me and run away, my bot will chase him.
Thanks for the help!
getTrade().offer("Coins", (int)a_Amount);
Works in 2.5.28, but fails in 2.5.31
I need to do further testing later tonight.
Also, why is the parameter a int? Should'nt it be a long?
Thanks!!
EDIT: turns out it works on my machine, but not on my brother's machine... weird.
EDIT 2: Turns out everytime the .offer() fails, I get banned...
EDIT 3: Turning off "Side panels..." in the options fixed it!