Jump to content

Swizzbeat

Members
  • Posts

    7986
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    100%

Everything posted by Swizzbeat

  1. Did he really link an obfuscated script source
  2. That's pretty pathetic though. Staff team seems to get annoyed and kill of the people that actually keep this site alive.
  3. The access attempt debug messages should just be removed. Their not only annoying but also cause people with a sub IQ of 60 to make retarded posts.
  4. You should probably add it to the loop which actually grabs the next tile to walk to. The first loop just gets the closest position to your current position as a starting point.
  5. I'll probably begin work on this later (if I remember) just so there's some actual code on here
  6. Swizzbeat

    OSBot 2.2.3

    People need to stop with this. OSB1 is pretty much nonexistant now, all it does is waste @Laz's time when he could be doing other more important things.
  7. That's a retarded way of doing it when you can just edit the select div value.
  8. Congratulations on not knowing the difference between web technologies.
  9. Wow this looks awesome! I've always wanted to write something like this but never really knew where to begin. Thanks a lot for making it open source
  10. Nah I don't give two fucks about school, and it would have been a useless credit even if I got it since I'm going to major in CS. The only reason I took it is because I didn't want to take the final
  11. The Properties Object stores key/value pairs. All I'm saying is creating a wrapper class to grab each value based on it's key could prove to be beneficial :p
  12. Personally I would create a wrapper class that I could pass my properties file to when loading. This way I can have a generic class which handles all of the logic in the properties file, making it easy for later use. For example this is what I use for saving paths in a x;y;z;x;y;z format: import org.osbot.rs07.api.map.Position; import java.util.ArrayList; import java.util.List; import java.util.Properties; /** * Created with IntelliJ IDEA * User: Anthony * Date: 6/3/2014 */ public class Path { private String name; private List<Position> path; public Path(Properties properties) { this.name = properties.getProperty("name"); this.path = getPathFromProperties(properties); } public String getName() { return name; } public List<Position> getPath() { return path; } @Override public String toString() { return name; } private List<Position> getPathFromProperties(Properties properties) { List<Position> returnPath = new ArrayList<>(); for (String s : properties.getProperty("path").split(";")) { String[] coords = s.split(","); returnPath.add(new Position(Integer.parseInt(coords[0]), Integer.parseInt(coords[1]), Integer.parseInt(coords[2]))); } return returnPath; } }
  13. Still waiting on someone to say yes to butt.
  14. I doubt it's based on an actual "min and max" since I assume the mouse speed represents the average millisecond interval between mouse events sent to the client.
  15. Just log it to the console.
  16. There's a difference between being able to create a script for a bot and writing an actual program. I appreciate the confidence in me though
  17. Swizzbeat

    VIP Forum

    If I see you say Senior Sheriff Dog one more time I'm going to neuter you.
  18. @NotoriousPP is gonna love this.
×
×
  • Create New...