Jump to content

anderiel

Members
  • Posts

    115
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by anderiel

  1. Nice! This i did not know. Not sure if osbot has such a function, but rsbuddy has api that gives you store prices that i can multiply. I can work with that, thanks.
  2. i kind of hoped for a simpler solution than scraping sites.
  3. I was wondering if there is a way to get high alch prices. From an API or something, anything. I have found this : http://forums.zybez.net/runescape-2007-prices/api/rune axe , but all my requests to that site from application end in 503.
  4. would like to know what does acc with the following goes for : 75/75/75 att/str/def 43 prayer 72 slayer 51 crafting (slayer helmet unlocked)
  5. It did not start walking. If prefetch failed, would it cause this? And if it did, i was trying the same walk until i stopped it, so i guess the odds of prefetch failing every single time are low?
  6. Well the script.walking.webWalk() works, but its not the ideal solution, complicates my code needlesly. If i encounted more problematic areas i will have a lot of if statements which webwalking to use. I would still want to know what the issue is and how to avoid it. Are there any sources about the webwalking? Like how does it operate, and when do situations like this happen?
  7. You did not read the post, did you? I stated that i can webwalk from different places there. It is supported. 1. I can try that, but i stopped using that because it does not have teleports enabled (but true that for this case teleports are not neccessary). I would like to have only one way of using webwalking not to have to combine them. 2. You didnt read the whole thing either, did you now? As i said, i tried walking away, went almost to varrock east bank, but still nothing. Only after teleporting it found a way. I dont think it is a missing link, when a link is missing then i just get a no path found error. And also i webwalked to the altar, so the way should exist.
  8. Ok first things first, i am not sure if it is a bug or if i can do something about it. But in certain situations the webwalking fails me with "WebWalkingEvent; Terminated! Exceeded attempt threshold." I am quite confused what does that mean. I know that the path exists. The same webwalking snippet found the path from other positions. For example when this occurs to me is when i webwalk to Vannaka. I have varrock tele and brass key in inventory, along with few other teles (dueling,games,falador,camelot). It works from most places, i have webwalked there from several different banks (lumby,camelot,castle wars and maybe others i dont remember all), but when i try to webwalk from varrocks northern prayer altar it fails with the mentioned output. I even paused the script, trying walking a bit south, that did not fix it, but when i teleproted to falador and then tried, it worked again. Area i am walking from (the prayer altar) : new Area(new Position(3252,3485,0),new Position(3255,3484,0)); Area i am walking to (around Vannaka) : new Area(new Position(3145,9915,0),new Position(3148,9912,0)); This is the snippet i use for webwalking : public static void webWalkToDest(Area destination,Script script){ WebWalkEvent event = new WebWalkEvent(destination); PathPreferenceProfile ppp = new PathPreferenceProfile(); ppp.setAllowObstacles(true); ppp.setAllowTeleports(true); event.setPathPreferenceProfile(ppp); event.prefetchRequirements(script.getBot().getMethods()); script.execute(event); } How can i get around this? Is there a way, can i maybe increase the treshold somehow? is it a bug? I am not sure, any advice would be appreciated. Most of all i dont understand how do i reach the treshold when i am closer to the target location than when i am not.
  9. Just tried running my script. interact method is broken. Which is like 70% of all scripts, so it does not seem to me that the bot is up
  10. Does the osbot webwalker contain nodes for fossil island? Because my script throws at me no route found when i try to webwalk there.
  11. 1. Pictures of the account stats 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) 4. Pictures of the quests completed 5. The price you will be starting bids at 30M 6. The A/W (Auto-win) for your account 95M 7. The methods of payment you are accepting 07gp 8. Your trading conditions We will use a middleman. 9. Pictures of the account status 10. Original/previous owners AND Original Email Address I am the original owner.
  12. Dont bot on accounts you care about man! Thats the basics.
  13. I would expect that to have quite high ban rate.
  14. Nice guide, i plan to get into goldfarming sometimes soon, after i finish my script. This helped in many ways.
  15. Ok i found the solution. Or rather i found the bug/imperfection in the webwalking that was causing my problems. It would seem that the webwalking only checks if i have runes in inventory and does not bother about anything else, hence when i had law runes water runes and air staff equipped it did not realise i could teleport and decided to walk instead.
  16. When i used an event and set the PathPreferenceProfile to a new one with allowed teleports the only change is that the bot started using teleportation jewellery. code that i am using right now: WebWalkEvent event = new WebWalkEvent(locations[nextLocationIndex]); event.setPathPreferenceProfile(PathPreferenceProfile.DEFAULT.setAllowTeleports(true)); if(!this.execute(event).hasFailed()) { changeState(); }
  17. So i returned to one of my scripts that was working fine a month back, and now when i use walking.webWalk(Area) it does not use teleports. It uses charterboats instead which is way slower. Am i missing something, was there some update which requires me to set the priorities somehow, or were teleports removed from webwalking? It was using teleports when last i ran it month and a half back.
  18. Looking for a price check for the following account: 80ish melee stats 77 def 82 ranged 86 magic (50k from 87) 46 prayer 72 slayer notable quests: regicide monkey madness Animal magnetism Ghost ahoy Got dragon defender,accumulator two pieces of graceful and unlocked slayer helm (with 55 crafting) The account also has a 2 day bot busting ban though.
  19. that resulted in this: Starting local script with name: scriptname Debug enabled on port 5005 [DEBUG][07/19 06:20:52 odp.]: Injected 2 field list filters [DEBUG][07/19 06:20:52 odp.]: Injected 2 field filters [DEBUG][07/19 06:20:52 odp.]: Injected 2 method list filters [DEBUG][07/19 06:20:52 odp.]: Injected 3 method filters In debug mode! Listening for transport dt_socket at address: 5005 Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 6 at org.osbot.BotApplication.main(gr:194) Bot exited with code : 1 but only when the script name is correct, if it is incorrect i get this: edit: Ok, i did some experimenting now and changed my script name to a single word instead of two words(from something like Anderiels Script to AnderielsScript). Now it started working, guess the problem is with local scripts that have multiple words in their name.
  20. i copied it right from the script manifest, using _ instead of space makes it start the client, but not the script (because of wrong scriptname probably). Its weird, basically when i have everything right, nothing happens, and when i have an error in the script part the client starts. Could it be possible that my script uses something in onstart that would make it crash silently? The script works fine when started manually.
  21. I am using a local script, therefore i should be entering name.
  22. So i wanted to make myself a bat file that would use the command line arguments to start my script. The command i am using: java -jar "osbot 2.4.75.jar" -login anderiel:password -bot email:pass:pin -script "scriptname":abcd and obviously in my command all the passwords and stuff are correct, these are placeholders for security reasons. The thing is, when i run this i get this response from console: Starting local script with name: scriptname [DEBUG][07/19 10:28:29 dop.]: Injected 2 field list filters [DEBUG][07/19 10:28:29 dop.]: Injected 2 field filters [DEBUG][07/19 10:28:29 dop.]: Injected 2 method list filters [DEBUG][07/19 10:28:29 dop.]: Injected 3 method filters and then nothing happens, osbot wont start up. My script does not use the console parameters, so i tried versions of scriptname: or just scriptname, these resulted in: Script settings are incorrect, unable to load automatically! Usage: -script scriptid:params OR scriptname:params [DEBUG][07/19 10:34:06 dop.]: Injected 2 field list filters [DEBUG][07/19 10:34:06 dop.]: Injected 2 field filters [DEBUG][07/19 10:34:06 dop.]: Injected 2 method list filters [DEBUG][07/19 10:34:06 dop.]: Injected 3 method filters and osbot loaded but stopped at login screen. I am not sure what is wrong, i checked the scriptname for typos, but there are none.
  23. Just found out that Bank.getWithdrawMode() returns BankMode.WITHDRAW_ITEM everytime, even after my script changed it to note successfuly. Not sure if it is an issue since july 14 or earlier, because i was not here for the last two weeks, so i am posting it here.
×
×
  • Create New...