Jump to content

abibot

Members
  • Posts

    48
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by abibot

  1. Using template this time.


     


    1. OSBot Version: 2.4.33


     


    2. A description of the issue: 


    Using getMagic().castSpell(Spells.LunarSpells.NPC_CONTACT) causes the script to try to cast EXAMINE_MONSTER (to the left of NPC_CONTACT), can solve this issue by coding the script to use CURE_OTHER (to the right of NPC_CONTACT). This issue/workaround seems to exist for all of the lunar spells.


     


    3. Are you receiving any errors in the client canvas or the logger?


    No


     


    4. How can you replicate the issue?


    Use getMagic().castSpell(Spells.LunarSpells.NPC_CONTACT) in a script.


     


    5. Has this issue persisted through multiple versions? If so, how far back?


    This was working in the last OSBot version. May also be due to an RS update.


  2. Objects inside the abyss aren't hooked still in this update. Entity debugger is on. Also noticed objects inside a house such as mounted glory aren't still detected.

     

    Nature rift ID is 14400 and glory is 13523 if that helps at all.

    zTJkWCJ.png

    Major support for hooking abyss rifts and mounted glory in house!

  3.  

    While the OSBot admins wouldn't hack an individual user, if the OSBot client got hacked, like what happened a year (or was it two?) ago at a different prominent botting site by a user named gh0st, your account could potentially get hacked.

     

    There is no way a hacker could steal your RS Account information. We do not store it in our servers at all. We do not send it through a connection in any way. If someone "hacked our client," they would have to first steal our unobfuscated client directly off of the developers computers, change the code, remove our security methods, then upload the link via the site. The chances of this happening are about.. 0%

     

    Of course it's near 0%, just playing devils advocate to not entirely rule out the possibility :P. Thanks for the comforting words.

    • Like 1
  4. While the OSBot admins wouldn't hack an individual user, if the OSBot client got hacked, like what happened a year (or was it two?) ago at a different prominent botting site by a user named gh0st, your account could potentially get hacked.

  5. This idea has been posted many many times and never approved by Admins, only a button to take screenshots is not the best use btw.. I mean you can just use the print screen options or any other tool like screensnapr, puush etc... Because this way you still have to upload it.

     

    What we need is a method for scripters to call, in which they can make a screenshot. So when the script ends, or after a few hours, it will take a screenshot automatically

     

    Could try Mithrandir's suggestion.

    http://osbot.org/forum/topic/3831-take-screenshot-when-leveling/#entry46183

     

    For script writers, just add this code whenever the player level up

    ImageIO.write(bot.b().g() /*bufferedImage*/, "png", new File("Where ever you want to save it"));

    So it could be something like this

    ImageIO.write(bot.b().g() /*bufferedImage*/, "png", new File("ScriptName" + currentLevel+".png"));

    that would save it as "ScriptName36.png" if the current level is 36

     

     

  6. Here's a method if you want to implement it into your script, but I support it's addition into the API. Maybe not as an auto logout feature (since you could die due to being in combat, etc) but rather as a boolean check.

     

    Also, if there was a way to check that there was a crown by a player's name in chat (silver or gold, I guess) and no "Mod" in name, that'd be great.

        private boolean modCheck() {
            List<Player> players = client.getLocalPlayers();
            for(int i = 0; i < players.size(); i++) {
            	if(players.get(i).getName().contains("Mod ")) {
            		return true;
            	}
            } return false;
        }
    
×
×
  • Create New...