Everything posted by Camaro
-
Unable to insert code into post?
- Unable to insert code into post?
- Arcus and Bogla CLOSED
- Script executor is taking too long to suspend
I found that when I execute async events from inside of a blocking event, I had to manually call setFinished() on each one or else that would happen.- Autoclick ban rate
Personally, 2012 was the peak with regard to botting. I felt invincible back then... untrimmed hp cape, 99 rc, 1b+ gp, suicide botting for days on end. Account is still here to this day. Although I would never attempt to bot on it again.- How can i delete my attachments?
you'll probably have to go through each post and manually delete it- Validating email address
After going through many accounts, I've just realized that jagex sends an email asking to validate my email address. Does anyone have experience with validating their email reducing ban rates? If not, I guess ill find out within the next couple of weeks!- Halloween Event!!
I just ran it again and I dont see this happening. Did the mager give you the tinderbox yet? Personally, I try to make the bot mimic my own play style as much as I can, and one thing that I always did was keep the camera in one spot all of the time, no matter what. Sometimes, the webwalking will change the camera location when it tries to interact with objects. The control makes sure that the camera always goes back to the original position. Also just in case something else causes the camera to move.- Just released my first (unofficial) script!
check it out!!- Halloween Event!!
- GE Api broken?
Just put in a buy offer for bread at 1gp using that method. So id say its working, but I an on 2.5.60- GE Data (get price etc. by item name) no external libraries required
Has anyone found a new link?- cant find the osbot.jar file when setting up in intelij
I think he copied that picture from a setup tutorial- 3500+ item IDs in a class
I've always read to never use ID's because they can change... but I guess that only applies to widgets?- Help interacting with items
getinventory.interact() is not a valid method. Link to extremely useful Timing methods EDIT: Im incorrect, Inventory class extends ItemContainer so it does have the interact method- looking for abot/script
At least this isn't as bad as when my brother asked me to make a bot for his friend to buy sneakers...- Improving your script to be less banable
I found that once I switched to using a proxy, I wouldn't get banned NEARLY as quickly Went from day 1 bans to just over a month until a ban- Walking back to previous location
There is an overarching problem with the way you are designing the script. It isnt mean to go down through the code and execute everything in order. This is how you have it: if (condition) do this if (condition) do this If both conditions result to true, then both actions are performed. IT should, instead, only evaluate one condition to true and perform one action per every time the script loops. This of onLoop as what you want to do in one moment of time based on environmental values at that instance. you should instead do: if (condition) do this else if (condition) do this for example: if (bank is not open) open bank else if (bank is open) deposit logs The first iteration of the loop. the bank is not open. So you open the bank. The next iteration, the bank is open. So you deposit the logs. Inside of each if statement, you can put more if statements to check more conditions, but try to only ever execute one action every time the script loops. After you get the hang of that, you can look into Events to contain certain actions, and execute 'mini onLoops' throughout the script. Edit: after looking at it more, I see that you arent completely ignoring else statements, but the banking function shouldn't be doing everything at once- Client getting stuck without error
I actually just submitted a bug describing a similar situation. Are you by chance executing events?- Judge my first script
Take a look at this. I religiously implement this in every script as if it was part of the API- Instantiating separate event executor
I'm creating a framework for one script with multiple tasks. Is it feasible to instantiate a separate event executor to run events?- WebWalk PathPreference question
I did before posting this, so I was asking for confirmation before I did something unnecessary. Thanks- WebWalk PathPreference question
Hi, Im trying to set the webwalker to use teleports and check the bank for items. If I set both of these to true and I am next to a bank when the event is executed, the bot should automatically open the bank and withdraw teleport runes, correct? Or is that only for items such as amulets, rings ect? For reference, I am in Falador west bank trying to webwalk to varrock.- Custom CLI arguments
Am I able to give my own custom args when starting the client for use in my scripts? --mycustomarg "arg"- Static download url for dev release?
Hey, So I know http://osbot.org/mvc/get will always give you the latest stable release. Is there a static url I can hit for the newest dev release? Thanks. - Unable to insert code into post?