Jump to content

ridooz

Members
  • Posts

    6
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

643 profile views

ridooz's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. how do you use proxys ? can you guide me or show me a guide on how to setup for osbot? I used cyberghost untill now but now its paid.
  2. Anyone know any alternatives to a free vpn? Apparently cyberghost stopped their free service.
  3. Fixed it my own way without timer or conditionsleep
  4. Still doesn't work. What am i doing wrong here? if (!player.isAnimating()) { if (!player.isMoving()) { if(System.currentTimeMillis() - this.waitTimer > 3000){ if (options == null) { furnace.interact("Smelt"); sleep(3000); } if (options != null) { sleep(3000); options.interact("Smelt X Steel"); sleep(random(2000, 2000)); keyboard.typeString("" + random(29, 99), true); sleep(3000); } } else{ waitTimer = System.currentTimeMillis(); } } }
  5. I've tried implementing a timer, without success. Can you help explaining further how i can implement in my code possibly ?
  6. Hi i'm new to scripting at osbot.org. Trying to learn the basic stuff. Created a willow cutter and banker at draynor. Now moved onto a steel smelter at edgeville (just to get more knowledge and the basics) I just have a problem with smelting since your animations stop for a second when smelting bars. How can i prevent this? Here's an example of my code: if (!player.isAnimating()) { if (!player.isMoving()) { // && System.currentTimeMillis() > (player.getAnimation() + 3000) if (options == null) { furnace.interact("Smelt"); sleep(3000); } if (options != null) { sleep(3000); options.interact("Smelt X Steel"); sleep(random(2000, 2000)); keyboard.typeString("" + random(29, 99), true); sleep(3000); } //sleep(random(1000, 1000)); } } It just hits smelt at furnace again when it has smelted 1 bar. Thanks in advance
×
×
  • Create New...