Jump to content

zScripz

Members
  • Posts

    744
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by zScripz

  1. getting close, me and a great helper have been making great progress
  2. This won't walk anywhere, this will just generate an array of positions based on where you walk your character
  3. We already got official scripter >.>
  4. Maker of shit scripts since 2034

  5. What a waste of bandwidth this topic is.
  6. I'm now in the extensive testing stages. Once I get a relatively stable base, there will be a free beta! Stay tuned!
  7. What does the script do, exactly.
  8. lol hunting for the script writer rank eh
  9. yer... I think everyone here understands that you are the virgin..
  10. Could I ask what you are basing this on? Because I redid my calculations and found that around 15 were caskets, I believe there are 94 total clue scrolls. Btw Satan you were just missing the last emote clue, 12032
  11. I like the event system, however, it seems that its missing some fuctionalities (ie skills not being able to check level), the anti-ban system is nice (though unneccessary, all of the parts of the new anti-ban could be done in OSBot 1 easily, however I do appreciate not having to mess around with multi-threading). Overall good job guys EDIT: I see you have removed Areas, what will they be replaced with?
  12. Come to the chat so I can give you your reward :P
  13. I'm 15 clues away from having all the data I need for my clue scroll script. If you have an easy clue scroll, check its id, and if its ID is any of the below, PM me a picture of the clue scroll + id for 100k. + you'll be helping OSBot get an awesome script ID(s) needed: Emote- 10204 10226 Simple (Search/Talk)- 3510 3497 2697 2691 2682 2680 Unknown- 3490 3491 3504 3505 2687 3515 10232 - most likely an emote clue keeping with others in this range Don't know how to check ID? Turn on grounditem info in advanced settings, and drop the clue.
  14. Updated OP. 70/101. My tool I was using to get all the clues was a little off, I believe there are 101 clues total.
  15. I created this since I had to make many small paths that I couldn't well use with a map; hope someone finds some use in it Download: http://up.ht/1gqZhyG Notes: -It will automatically copy the code to your clipboard -It will also print it out in log Yea just put in the tile distance (I usually use 5 it seems to work well for walking long distances). Source if you want it package com.zscripz; import java.awt.Toolkit; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.StringSelection; import java.util.ArrayList; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.map.Position; @ScriptManifest(name = "zWalker", author = "zScripz", version = 1.0, info="Creates a path based on tile distance") public class Walker extends Script { ArrayList<Position> posList = new ArrayList<>(); Gui gui; Position control; public void onStart(){ gui = new Gui(); gui.frame.setVisible(true); control = client.getMyPlayer().getPosition(); } public int onLoop() throws InterruptedException{ if (!gui.textField.getText().equals("")) { if (distance(control) >= gui.getTileDistance()) { control = client.getMyPlayer().getPosition(); posList.add(client.getMyPlayer().getPosition()); log("Position added!"); } } return 0; } public String convertPos(Position p) { return "(" + p.getX() + "," + p.getY() + "," + p.getZ() + ")" + ", "; } public void onExit() { StringBuilder sB = new StringBuilder(); sB.append("Position[] path = new Position[] { "); for(int i = 0; i < posList.size(); i++) { sB.append("new Position" + convertPos(posList.get(i))); } sB.append(" };"); String myString = sB.toString(); StringSelection stringSelection = new StringSelection (myString); Clipboard clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard(); clpbrd.setContents (stringSelection, null); log("Text copied to clipboard!"); log(sB.toString()); gui.frame.dispose(); } }
  16. Thanks for the update Maxi. As long as work is being done I am happy
  17. Thanks, looking at hopefully releasing a free beta the day of OSBot 2.0
  18. zScripz

    AMA V2

    What do you know how to program? Like what languages
  19. Thanks :P someday I hope to do level 2 clues as well
  20. Hey all those who are interested in this project; I have decided that I am going to wait for OSBot 2.0 to come (which is said to be very soon ), then write this script in that api, so you get all the advantages of OSBot 2. This does not mean this project is going unworked!!!! For each clue, I have to basically do it it on my account, and I am averaging about 10 clues per day . Expect this to be released the week of OSBot 2 (as all I have to do is port over my handler and other misc methods, which shouldn't be too hard). Thanks for reading, zScripz.
×
×
  • Create New...