Jump to content

Markoz

Members
  • Posts

    259
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Markoz

  1. How do i get a NPC/Entity Mouse destination?
  2. Does anyone have any idea on where to test safespotting? I was thinking of tzhaar caves but im only 15 range atm..
  3. Since im on vacation and dying of boredom i decided i should try do script something different, i searched on the request script page and saw some guy talking about safe-spotting some NPC and that gave me the idea to make some kind of universal safe spotter: First iteration - Working, but very roughly and weird, but im happy with it: http://www.youtube.com/watch?v=C90HQaeqX40&feature=youtu.be I first thought this was easy, at least this first part was, but there's so much more to make and i've only done the easiest part, hope i can make it though =]...
  4. Markoz

    MAccountStarter

    xD It was fun developing it, you should try
  5. Markoz

    MAccountStarter

    Thanks! And it might be released for free if most of the people are okay with that
  6. So i decided i should learn how to make a script perform tasks and since i had a low level account i decided to make a script that would kill chickens, and when it was ready, swapped to cows, this is the result so far: http://www.youtube.com/watch?v=hHWmYFgaDL0&feature=youtu.be Edit: Added looting, banking, burying bones http://www.youtube.com/watch?v=r7YItDWlsSU&feature=youtu.be Script switching between Strength and defence:
  7. I relate to this, except it doesn't snow in my country, the thing is my car does'nt have AC and when it rains i have to ride with the windows open, or clean it every five minutes with a pijama that i always forget to remove from the car
  8. Markoz

    Blind Walk

    Yes i used to hace that problem too, the bot would try to walk somewhere and sometimes it would try to click the same destination multiple times... That was fixed using walkMinimap() instead of walk, now i just iterate through the path and it works like a charm. Edit: But it's good to have a custom method, it differs your script from others, preventing bans.
  9. Good job finding this before more harm was done, I still can't think of why someone who had such a potential to profit selling scripts would do something like this, it's a shame really
  10. I was going to use this on a script but i decided to stop the development, so before scrapping it i decided to release it: This holds the answers: String[] strongholdTexts = { "To help me recover my password if I forget it or it is stolen", "Use the 'Recover a Lost Password' section on the RuneScape website", "Don't give them the information and send an", "Nowhere", "Recovering your account if it is stolen.", "Every couple of months", "Don't tell them anything and click the", "Virus scan my computer then change my password and recoveries", "does not block your password", "Only on the RuneScape website", "Game Inbox on the RuneScape website", "No", "No, it might steal my password", "Don't give him my password", "Nobody", "Don't tell them anything and inform", "Memorable", "The birthday of a famous person or event", "Politely tell them no and then use the" }; This clicks the first interface: if (client.getInterface(242) != null) { if (client.getInterface(242).getChild(2).getMessage() .contains("To pass you must answer me this:")) { if (client.getInterface(242).getChild(4) != null) { selectInterfaceOption(242, 4, "Continue"); sleep(1000); } } } This answers the second one: if (client.getInterface(230) != null) { if (client.getInterface(230).getChild(6) != null) { int childLength = client.getInterface(230).getChildren().length; for (int i = 0; i < childLength; i++) { for (int a = 0; a < strongholdTexts.length; a++) { if (client.getInterface(230).getChild(i).getMessage() .contains(strongholdTexts[a])) { selectInterfaceOption(230, i, "Continue"); sleep(1000); } } } } } And this clicks the last interface(which vary interface child and parent numbers, idk why): It may not be the best way to do this, but it was a working quick fix for me =p, feel free to grab the code or even clean it a little bit for us. And if someone with bigger knowledge could point out some bad pratices, etc. I would be grateful ps: i know its simple.. but could save someones time
  11. Markoz

    MSlayer

    Updated action class, now it can take specific coordinates(makes interacting with specific objects easier, for example, doors at stronghold of security) Video to come...
  12. Markoz

    MSlayer

    *im marcola(posted on old account)* Yeah i saw someone saying that, not sure who they said it was, but this is really just a personal goal, but who knows in the future... =p anyways thanks
  13. Markoz

    MSlayer

    Since im getting a week off i decided to try and make a simple slayer script for personal use and maybe for selling if it all goes right... I started it yesterday but i restarted it today because i was trying to make one where it would load all things needed(path, ids, etc) from a text file and it was taking too long and the future wasnt looking so bright for that method =p, so i restarted, and currently i got this going in a few hours: http://www.youtube.com/watch?v=v5y7LoRpS5U&feature=youtu.be The walking is still a bit buggy, but its because the walking method is not refined yet. How the walking works: I first add the waypoints and the actions i wish to perform(obstacles) waypoints.add(new Waypoint(new Position(3220,3218, 0), 0)); waypoints.add(new Waypoint(new Position(3213,3211, 0), 1)); waypoints.add(new Waypoint(new Position(3206,3209, 0), 2)); actions.add(new Action(14977, "Climb-up", new Condition("playerZ", ">", 0, ch), 3)); actions.add(new Action(14978, "Climb-up", new Condition("playerZ", ">", 1, ch) ,4)); waypoints.add(new Waypoint(new Position(3208,3219, 2), 5)); path = new Path(new Condition("object", bank, false, ch, 5), waypoints, actions); while the path condition is not met, in this case, be 5 squares away from the bank, it will walk the path. when it hits a action, while the action's condition is not met(in this cases while the z is not bigger than 0 / 1) it will try to perform the action The good thing about this method is that i wont need to write a whole walking method for every task(because every task has different obstacles and different conditions to be met regarding it passed the obstacle or not) I never really attempted something like this so getting this walking thing working got me really hyped to keep going =D
  14. Thanks =D that's really motivating.. xD
  15. Thanks , im fixing those minor problems today, like clicking the coffin twice when brother is already out and turning off pray when it finds the cave. Updates to come Thanks
  16. UPDATE: Version 0.2: https://www.youtube.com/watch?v=D712t4isTpU Fixed clicking too much on Sarcophagus Fixed turning off pray when entrance is detected Improved brother detection and reaction time Doest mess up when there's multiple brother in room PS: Keep in mind this is just a personal challenge, no plans on releasing/selling such a script, unless it proves to be flawless :p
×
×
  • Create New...