Jump to content

Token

Script Officer
  • Posts

    8431
  • Joined

  • Last visited

  • Days Won

    49
  • Feedback

    100%

Everything posted by Token

  1. Token

    Stealth Quester

    I'll go over a long list of bugs in a few hours
  2. Token

    Stealth Quester

    Time to write Dragon Slayer
  3. Token

    Stealth Quester

    Lol I should read updates more often
  4. Token

    Stealth Quester

    Nah, doesn't support Dragon Slayer yet
  5. Token

    Stealth Quester

    Not another script, I'm adding more quests to this one
  6. Token

    Stealth Quester

    You mean it doesn't click the demon once the demon is low hp and is supposed to chant the incantation?
  7. Token

    Stealth Quester

    I thought they added those stairs to the webwalker in recent client versions
  8. Token

    Stealth Quester

    Thanks, I'll look into it
  9. Token

    Stealth Quester

    It works on my screen It supports all F2P quests except for Black Knight's Fortress, Shield of Arrav and Dragon Slayer These edits are insane Authed
  10. Token

    Need help.

    Scripts can no longer verify if the user is using mirror mode since the removal of Client#isMirrorMode(). It's not the scripter's responsiblity to make his scripts compatible with mirror mode as we write the same code for both clients and same code should work exacly the same on both of them, otherwise we would still be given access to verifying if the user is running a mirror mode client and act accordingly in script code. If this bug doesn't happen on stealth injection, it is most likely not a bug in @Czar's code, but the mirror client. Posting a more detailed report on this issue, including your client settings such as breaks, whether script should stop on logout (there is a checkbox for that, make sure that's not the issue) and the script settings themselves may help.
  11. Token

    Stealth Quester

    Was supposed to be released but I got plagued with bugs
  12. Token

    Stealth Quester

    Mithril gloves ones
  13. Token

    Stealth Quester

    I've heard of about 2 cases of bans in the last 4 months, but very likely to be from botting something else too
  14. enum Trees { NORMAL(1, new Position(...)), OAK(15, new Position(...)), ... ; private int level; private Position location; TREES(int level, Position location) { this.level = level; this.location = location; } public static Trees getCurrent(Script script) { int c = script.getStatic(Skill.WOODCUTTING); if (c < 15) return Trees.NORMAL; else if (c < 30) return Trees.OAK; else if (c < 45) return Trees.WILLOW; else if (c < 60) return Trees.MAPLE; else if (c < 75) retirm Trees.YEW; else if (c < 90) return Trees.MAGIC; else return Trees.REDWOOD; } } Trees current; @Override public void onStart() { current = Trees.getCurrent(this); ... } @Override public int onLoop() { current = Trees.getCurrent(this); ... return 69; } When you are chopping a tree different from current, then its time to switch
  15. Token

    Stealth Quester

    How much did it offer for them?
  16. Token

    Stealth Quester

    I can't integrate anything walking related as that's entirely a client built-in feature, it has to be fixed on OSBot's end. We cannot blacklist areas with the current API and having a games necklace requirement on DMM is just not feasible, I'll have to wait for a new method in the webwalking classes that allows avoiding areas when generating paths (we had one before which was used in Animal Magnetism, was removed in recent updates) If you use a gear preset that contains a spell it will use safe spots. The quick start options have predefined gear presets that use spells to safe spot most quests
  17. If you want to move to romania you should get married in romania. I'm not sure if any country in the european union will consider your marriage certifcate as being valid if its brazilian, or will require a lot of effort and time.
  18. Token

    Stealth Quester

    It used to be blacklisted but they removed scripters ability to blacklist areas I guess adding food is all I can do for now until they re-add it to the webwalker
  19. Token

    Stealth Quester

    There are a few issues which I'm aware of ever since .59 for which I've been uploading temporary fixes, as they are not in the script code. Failing to board the ship may be due to a webwalker error (can be seen in the logger if that's the case). For the ship part I uploaded a fix 2 days ago but the SDN still hasn't updated, it will take take ships from another place as the webwalker in .68 seems to have some error with the Port Sarim ship. There is a DMM button on the GUI which was requested about a month ago by a user, I have not tested it myself as I never played DMM, but all it does is ignore teleports. In order to use it, you are required to have the required items as there is no Grand Exchange You have to create a gear preset using the Gear Editor tab. Set your gear and preferred attack style in game then press "Load Gear". The gear should now be displayed on the GUI including the attack style, marked as FIRST, SECOND, THIRD, FOURTH and FIFTH (for magic). They are in the same order as they appear in the combat tab, FIRST usually being accurate, SECOND aggressive, THIRD controlled, FOURTH defensive. After you are done with the preset, press "Save Preset" and then from the main window where you add quests to your quest list, select the gear preset (initially, it will be set to the "DEFAULT" preset)
  20. Token

    Stealth Quester

    Make sure your account has access to Morytania. The script will automatically complete this step if it does Priest in Peril itself Fishing Contest may be displayed on the GUI until buying supplies but it should not actually attempt to complete it if you don't have the requirements, it only skips the quests upon reaching them in the current list as you may obtain the requirements while questing (eg you can do Doric's Quest before The Knight's sword for the smithing requirement) I'll add some code to wait for run energy
  21. I'm romanian I don't wanna go to brazil tho
  22. Token

    Stealth Quester

    I'll upload a fix for next SDN update
  23. Token

    Stealth Quester

    soonTM Did you use mirror mode?
×
×
  • Create New...