Everything posted by Swizzbeat
-
I can't get OSBot to print the name of this interface. Any help?
If you're making a quester use VARPS. If not you need to grab the interface child and call the #getMessage() method.
-
30 MINUTES REMAINING
In my opinion a botting site event should never be on the actual game O_o
-
#RoadTo 97.9k RAW SHARKS! - Oldschool - SwizzBeat
Goodluck with the goal mate! Nice script you're using ;)
-
Arctic Feedback
Humor is lost among the staff members here. UND takeover?
-
about unregisterHook() 2.x.x
Oh they removed the static modifier since OSB1 API
-
about unregisterHook() 2.x.x
No, that code is correct.
-
Pick a free script [Poll]
But that formatting
-
Pick a free script [Poll]
Did he really link an obfuscated script source
-
what the fuck?
That's pretty pathetic though. Staff team seems to get annoyed and kill of the people that actually keep this site alive.
-
what the fuck?
- Back Online! RS Revision #53
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.- Walker With Basic Obstacle Handling
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.- Post the amount of tasks u have running atm
- Free Cooking bot
I had over 500 sales on my cooker for OSB1 and at one point it was $5.- [Menu] Option.var2, Option.var3 - what does they filled with?
Iterate over menu options?- Advanced Java OOP Assignment
I'll probably begin work on this later (if I remember) just so there's some actual code on here- 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.- My PayPal Balance
That's a retarded way of doing it when you can just edit the select div value.- My PayPal Balance
Congratulations on not knowing the difference between web technologies.- Need help with BSoD
Google is your friend.- Protecting your computer from Java based Attacks!
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- Gf AP US History
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- Gf AP US History
I got a 2 LOL- Saving gui setting Snippet
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- Saving gui setting Snippet
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; } } - Back Online! RS Revision #53