Jump to content

d0zza

Scripter II
  • Posts

    780
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

d0zza last won the day on February 16 2018

d0zza had the most liked content!

3 Followers

About d0zza

Profile Information

  • Gender
    Male

Contact Methods

  • Skype
    live:stackmuch

Recent Profile Visitors

7084 profile views

d0zza's Achievements

Mithril Poster

Mithril Poster (6/10)

137

Reputation

  1. hey bro does world hopping work? cause mine doesn't .. this is fo puro puro

  2. d0zza

    dSmither

    Turns out there was an issue smithing item sets, this has now been fixed. Should go live within 24 hours.
  3. d0zza

    dSmither

    What items are you smithing? I've tested it myself and it seems to be working perfectly.
  4. d0zza

    dSmither

    No problem, a fix has now been pushed for the new smithing UI update. Should go live within 24 hours.
  5. d0zza

    dSmither

    I was not aware of the new UI changes, will look into fixing this within the next couple days.
  6. Hello D0zza after this new update of osrs all the fishing scrips on different bots for example poopbot osbot Advertising other bots isn't allowed. ... didnt work do u have any free fishing script for trout?

  7. d0zza

    dSmither

    Seems to be working fine for me. Which options did you choose in the GUI and can you provide a gif with the logger included?
  8. Instead of using distance as the condition try using myPlayer().getInteracting().equals(otherPlayer) As I'm 90% sure following another player means your player is interacting with them. Of course you'll also have to null check myPlayer().getInteracting().
  9. The issue is that getWalking#walk has a minimum distance threshold of 2 by default, which means it will bring your character to within 2 tiles of the destination then terminate. If you want to get around this you'll have to create the walk event yourself and set the minimum distance threshold to 0 before executing it, you can use the walkExact code that HunterRS posted above to achieve this.
  10. Some things I can see immediately are: Any API interact() call will return a boolean. This will be true when the interaction successfully occurred and false if it failed, combine this with if statements to make sure you're not sleeping when the interaction call failed. Don't use random sleeps, you can definitely use a conditional sleep when waiting for a widget to appear. You don't want to use static IDs to grab widgets as these can change a lot, instead use the widget debugger to find something to filter the widget on, for example the text the widget contains.
  11. That's because when launching through CLI the space in "31 botter" indicates that the next argument has begun. Instead use this CLI param to run the script: -script muler:31-botter Then in your onstart do String thebot = getParameters(); String thebotrep = thebot.replace('-', '\u00A0');
  12. Move these lines: String thebot = getParameters(); String thebotrep = thebot.replace(' ', '\u00A0'); to your onStart
  13. Logging into the browser isn't necessary. Just use your own log in handler and check the position of certain colours when logging in. Each error message is unique which will have a yellow pixel at a unique location, you'll just have to find these positions out and hardcode them in.
  14. d0zza

    dSmither

    Try it out on injection mode. Also please provide a screenshot of the logger and bot if this still happens in injection mode.
×
×
  • Create New...