-
Content Count
18 -
Joined
-
Last visited
About falador1

-
Rank
Newbie
Profile Information
-
Gender
Not Telling
-
Location
Behind you
-
Interests
Why am I still a newbieee
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
falador1 reacted to a post in a topic: How Can I Bot More Than 50 Accounts On The Same Computer?
-
Gets stuck after Ranging rats. Looks for ladder but if its not on the screen hangs and gets banned.
-
falador1 reacted to a post in a topic: DreamBot v3.4.5
-
falador1 reacted to a post in a topic: Camera.getYaw(Entity)
-
The pitch and yaw the camera should be at. I was wanting to create a camera movement algorithm that could randomize my camera movements similar to the setMouseMovement function. There doesn't seem to be a an open source method for it, so trying to make my spaghetti code work. xD I could get the tile of my character compare to the entity tile and adjust camera accordingly. Just wondering if you guys already wrote that logic in rotatetoentity. Thanks for the response more coding for me 😢
-
falador1 reacted to a post in a topic: What exactly does it erase Fresh Start (?)
-
sweet will the API docs be updated?
-
Hey, is it possible to have a getter function for yaw for an entity. Trying to randomize Camera.rotateto(Entity) is difficult. There might already be a function i'm not seeing? EDIT: Looking back I put pitch in the title when I should've put Yaw. If anyone comes across this heres the helper function public int getYaw(Entity ent) { //vector going to game object int[] gameVector = {ent.getX() - getLocalPlayer().getX(), ent.getY() - getLocalPlayer().getY()}; //default 0 yaw vector <0, 1> int[] playerVector = {0, 1}; //radian of angle double rad
-
Magic! For Thread.sleep() I had to catch/throw an error but after that it worked like a charm!
-
falador1 reacted to a post in a topic: Mouse algorithm breaks client after quickhop
-
I'll try that and lyk thanks!
-
I know that the Mouse movement algorithm function is still in beta and buggy but I wanna list some bugs just so they're known and if theres anything I can do as a workaround 1. If the login handler is called while a script is running (e.g. quickhop) the entire client breaks. EDIT: #1 might be any handler because it breaks on the Bank Handler as well. 2. Sometimes the camera isn't adjusted to see an object if using an alternate algorithm. 3. Sometimes if stuck in a loop the script can't be stopped unless you close the client. Wondering if anyone had any w
-
rune adam43 reacted to a post in a topic: Dreambot Using more memory than DBLauncher specified
-
falador1 reacted to a post in a topic: Dreambot Using more memory than DBLauncher specified
-
Update/Bump I followed these steps Download and Installed. Removed old Java and Changed the ENV variables to for Path and JAVA_HOME New Java version above Removed Client.jar and redownloaded via DBLauncher.jar (Note -- I get Outdated java warning when starting up) Magic! Thanks!
-
Thanks for the response. Will do!
-
I have this problem too! Take a look at this post and compare it to your code. while (bankLocation.getCenter().distance() > 6) { if (Walking.shouldWalk(Calculations.random(2, 7))) { Walking.walk(bankLocation.getCenter().getRandomizedTile(1)); sleep(50, 1500); } }
-
UPDATE: Installing new java from Open J9 helped. Some reason Oracle's and Hot's were no good. Hey all, Been working on a couple of bots and getting the memory and CPU usage as low as possible. I have a couple of questions on what the launcher says vs what Windows says its using. When I open up the launcher and select "Maximum memory usage " and set it to 256MB But when I open up task manager Windows says its using more. I remember that I used 512MB limit before. Please help!
-
I've been scouring the api abstractwebnode and webfinder specifically and I still don't really understand what they do and why you need them? I've been trying to create a custom walking path using a web and has been good for visualization of what it is but I don't understand why its needed and what a "main web" is? Thanks!
-
falador1 reacted to a post in a topic: Starting dreambot and Running a script via CLI/CMD
-
falador1 reacted to a post in a topic: Not walking to set area
-
falador1 reacted to a post in a topic: Dispute against Banker
-
How do I get an array of my added accounts? Obviously I could just have a seperate text file with all of the nicknames but was wondering if there was a method call. Thanks! Question 2: Handling Banned accounts via quickstart. If I start up a client via quickstart I can see in stdout that the account was banned but the process/client isn't closed making it difficult to script it. Was wondering how yall handle banned accounts because deleting accounts by hand seems unnecessary?
-
- quickstart
- api
-
(and 1 more)
Tagged with:
-
how to close a client when script is finished with quickstart??