Jump to content

wavefloat

Members
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

wavefloat's Achievements

Newbie

Newbie (1/10)

1

Reputation

  1. Hi. I'm fairly new to osrs. I'm not too familiar with the game, but I'm coming from a willing place to learn. I know how the prices of some items go up in a linear fashion. Like 500% in a week type deal. Is this done via market making with a vast inventory of the item? I don't see how someone can make the price of an item increase so perfectly without having huge inventory. They would have to be buying and selling the item, aka wash trading, to increase price so smoothly. And doing so with game items isn't a simple process, you would have to be buying items from yourself or others at the desired price. A vast inventory of the item would make more sense to me, as they could increase price a few ticks every sale. Which would lead to the non parabolic charts of item prices ive seen. Can anyone enlighten me with any alpha on this subject? I really want to get involed
  2. you're a beautiful person, code works now. thank you so much
  3. Hi there. So I've tried to call on web walking a couple different ways. Each time the script gets to the part where a destination is found, it fails to walk there via web walk. Console spits out this error: WebWalkingEvent; No route found! Here's my code, please assist. it'd be greatly appreciated public void walkCow() throws InterruptedException { sleep(2000); // Find the nearest cow Entity cow = getNpcs().closest("Cow"); log("Finding cow"); // Check if a cow is found if (cow != null) { // Get the position of the cow Position cowPosition = cow.getPosition(); log("Cow located!"); // Walk to the position of the cow if (cowPosition != null) { if (getWalking().webWalk(cowPosition)) { log("Walking to the cow"); } else { log("Failed to find a route to the cow!"); } } } else { // If no cow is found, walk to the nearest tree RS2Object tree = getObjects().closest("Tree"); log("No cow found, walking to the nearest tree"); // Check if a tree is found if (tree != null) { // Get the position of the tree Position treePosition = tree.getPosition(); // Walk to the position of the tree if (treePosition != null) { if (getWalking().webWalk(treePosition)) { log("Walking to the tree" + treePosition); } else { log("Failed to find a route to the tree! trying again" + treePosition); walkLol(); } } } else { log("No tree found either. Nowhere to walk!"); } } } and here is walkLol public void walkLol() throws InterruptedException { WebWalkEvent walkLol = new WebWalkEvent(new Position(3215, 3456, 0)); walkLol.useSimplePath(); execute(walkLol); log("im trying lol"); pls help
×
×
  • Create New...