Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/19/15 in all areas

  1. β™”CzarScripts #1 Bots β™” β™” LATEST BOTS β™” If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    5 points
  2. 4 points
  3. JKJK. No free stuff here.
    3 points
  4. If you want to walk multiple paths, you could have a data structure like so: public class Path { private List<Position> path; public Path(List<Position> ourPath) { path = ourPath; } public List<Position> getPath() { return path; } } And then you can have something like this: List<Path> ourPaths = new ArrayList<Path>(); ourPaths.add(new Path(Arrays.asList(new Position[]{ new Position(x, y, z), new Position(x, y, z) })); Then, you wouldn't even need a switch/case selection. You could just do: getLocalWalker().walkPath(ourPaths.get(random(1, 5)).getPath());
    3 points
  5. We all know that there's a lot of inactivity on the staff's part inbetween time zone's and school work/jobs that the staff takes a part of outside of osbot. But Muffins could definitely fill part of these gaps in because he's always on when no one else is. He is a hard working, educated man and would do good as a mod imo. Give him a shot already! #Muffins #TrialMod #hashtagsaresostupid #thiswillgoupinflames #Hewillgettrialmod
    2 points
  6. https://www.facebook.com/270225899787773/videos/815669835243374/
    2 points
  7. Quality shit post. Shitposting master approves. #respect
    2 points
  8. You clearly got scammed by an impostor, do you even look at the pm? He clearly says different stuff and has a different name on his skype. Maybe you should be more careful next time and do research. Feel free to post a picture of the skype profile, so I can try to get the ip of the user who scammed you. Skype they had the conversation with.
    2 points
  9. Let a class extend JFrame in order to let this class be used as a GUI window. Either manually or using a designer, add visual components to an instance of this JFrame class. To add a dropdown box, you would typically use the class called JComboBox. Create one of these and add it to your JFrame (Note that JFrame has a method 'add'). In order to add and retrieve items from this combobox, you should set its backing Model. A common way to do this is creating a new instance of DefaultComboBoxModel, adding elements of your desired type into this model, and then setting this as the model on your combobox instance. Later, you can get the selected item from this model by invoking JComboBox#getSelectedItem.
    2 points
  10. 2 points
  11. 2 points
  12. public static String runescapeFormat(Integer number) { String[] suffix = new String[] { "K", "M", "B", "T" }; int size = (number.intValue() != 0) ? (int) Math.log10(number) : 0; if (size >= 3) { while (size % 3 != 0) { size = size - 1; } } return (size >= 3) ? +(Math.round((number / Math.pow(10, size)) * 10) / 10d) + suffix[(size / 3) - 1] : +number + ""; } Found the base of the method offsite somewhere (ages ago, can't remember where). I updated it a bit. apa
    1 point
  13. skype: live:sythemaster1337. must be verified pp and able to provide upon request.
    1 point
  14. 1 point
  15. Congratulation on the release! I just purchased the script too
    1 point
  16. Really depends what you prefer doing, if you like playing a one player game in a MMORPG then stick to ironman.
    1 point
  17. If you are using enum which is the smart way to do things and also using a jframe then you don't really need a default combo box model. You can just set your combo box to your enum. Let's say you only want a person to choose a location based off your enum and no other option. I rather tell you to use a joptionpane. It's pretty much a simple pip up box and depending if it's a yes or no question, or a blank field for someone to type in. Or even better a combo box. It includes a cancel and ok button. It's pretty simple for the basic needs. All you need to do is make the option return the data type you need: string, int, enum variable.
    1 point
  18. I've had that same mining guild walking error since I purchased the script 2 or 3 weeks ago? It usually auto-corrects itself , so I don't really care. For those wanting to min/max a bit more, it would save a few minutes I guess. (To be clear, I mean when you bank from mining guild, it will walk back and forth to the NW of the bank for awhile.)
    1 point
  19. Tom is not correct. LocalWalker handles run because it calls WalkEvent. If you want you can construct your own walk event and set the parameters to disable or enable toggling run. There is also an option to set the threshold in the event.
    1 point
  20. What are you trying to do? Right now, you aren't actually setting anything. Although you pass the method "false", you do not do anything with the value inside of the setRunning method. Do you have a "running" field variable that you want to adjust through the setRunning method?
    1 point
  21. They are both the same type of game, teamwork is equally required in both of them. What you are seeing when playing league, is a smurf absolutely strangling some lowly bronze scum
    1 point
  22. hey could i get a trial please?
    1 point
  23. Its literally the easiest thing to 1 tick gmaul
    1 point
  24. Edited I made it in paint.
    1 point
  25. get 33 from cows then range pot to range guild 75 in 1 night with czar range guild, if you don't want to risk ban do it over 2-3 nights.
    1 point
  26. Hey mate would like to trial before buying, cheers bro looks good though!
    1 point
  27. Been running this on mirror mode for 40+ hours with no problems 33 - 70 range no bans no sketchy clicks.
    1 point
  28. The paint code itself looks alright, the rest is a bit messy. A few tips: Learn some proper variable notation. I would personally recommend hungarian notation, as this will become more useful in larger programs. public int xVal = 0; public int intXCoordinate = 0; Which one of those is easier to read? Hungarian notation simply implies that you write your data type in lower case at the start, and then you give the variable a meaningful name. With modern IDEs the need for hungarian notation doesn't apply so much, but it's still useful and easy to read. On top of this note, rename your variables as it is very confusing to read. As far as paints are concerned, I would recommend trying something such as my PaintLib. It easily allows the manipulation of paint components in an OOP manner, and is also fairly easy to read in the long run. Good to see people learning though, good job!
    1 point
  29. As a graphics junkie (not that great of a designer however) I can tell you that practice makes perfect. Mess around and try all types of stuff and it really were prefect your skills and you'll learn shortcuts and tips. What program(s) do you use?
    1 point
  30. This. If you know Zyzz, you'll hear him saying it a lot.
    1 point
  31. Hey Czar, i havent been able to use this script for weeks, no matter what location i start the script in, work perfect to begin with then just completely stopped. here is a gyzao of the code box thing. https://gyazo.com/0991c6784df6dd7ec52c0152433491a2
    1 point
  32. HI Czar, just noticed a problem with Barbarian fishing. Goes to the fishing spot perfectly but for some reason when going to Edgeville bank he goes round and round in circles. I was trying this on a new bot but got an instant ban in stealth mode. So created another bot got it up to level 20 in mirror mode no problem as soon as he tried to fish at barbarian village he did a little run arround and I paused the script and lead him to the bank. Once there I resumed the script and the script ran well up untill he had another full load and tried to get to bank. I had left the room for about 10 mins. When I got back he was still running arround, as I went to move him to the bank I got banned. Neither of these bots were important to me but I am a little concerned that after just 10 mins Jagex new it was a bot even in mirror mode. Could you have a look at the going to the bank part of the script as it must be this that is causing the bans. Thanks
    1 point
  33. Hey! It seems the positioning system for mirror client has screwed up. Unfortunately we've gotta just be patient and wait for the developers to fix this issue. For now youll need to use injection apa
    1 point
  34. Is there an ETA for the update?
    1 point
  35. the mining guild (mining coal) problem didn't really get fixed when ttrying to bank with full inventory bot didnt go up latter just ran east (inside mining guild) and keeps spamming off the map east. this was after around 3 inventories. heres what i just copied from it Entrance found [MINING_GUILD] [iNFO][bot #1][09/17 08:43:49 PM]: Not near bank, walking to [x=3013, y=3356, z=0] [iNFO][bot #1][09/17 08:43:49 PM]: Found nearby action! Action Name Mining guild ladder entrance , Source [x=3022, y=9740, z=0] -> [x=3022, y=3337, z=0].. name [perfect.scripting.script.a.b.a.nul@7773039c] [iNFO][bot #1][09/17 08:43:49 PM]: Walking to next source: [x=3044, y=9744, z=0] ... however now I've done 5-6 inventories no problem at all. so not reccuring but the walking back and forth near bank is still happening (probably like 10-15 inventories) [iNFO][bot #1][09/17 09:18:56 PM]: Walking to next source: [x=3028, y=3364, z=0] ... [iNFO][bot #1][09/17 09:18:56 PM]: Found nearby action! Action Name Mining guild ladder entrance , Source [x=3022, y=3337, z=0] -> [x=3022, y=9740, z=0].. name [perfect.scripting.script.a.b.a.nul@15f0f6b3] [iNFO][bot #1][09/17 09:18:56 PM]: Walking to next source: [x=3028, y=3364, z=0] ... [iNFO][bot #1][09/17 09:18:56 PM]: Found nearby action! Action Name Mining guild ladder entrance , Source [x=3022, y=3337, z=0] -> [x=3022, y=9740, z=0].. name [perfect.scripting.script.a.b.a.nul@15f0f6b3] [iNFO][bot #1][09/17 09:18:57 PM]: Walking to next source: [x=3028, y=3364, z=0] ... [iNFO][bot #1][09/17 09:18:57 PM]: Found nearby action! Action Name Mining guild ladder entrance , Source [x=3022, y=3337, z=0] -> [x=3022, y=9740, z=0].. name [perfect.scripting.script.a.b.a.nul@15f0f6b3] [iNFO][bot #1][09/17 09:18:57 PM]: Walking to next source: [x=3028, y=3364, z=0] ... [iNFO][bot #1][09/17 09:18:57 PM]: Found nearby action! Action Name Mining guild ladder entrance , Source [x=3022, y=3337, z=0] -> [x=3022, y=9740, z=0].. name [perfect.scripting.script.a.b.a.nul@15f0f6b3] [iNFO][bot #1][09/17 09:18:57 PM]: Walking to next source: [x=3028, y=3364, z=0] ... [iNFO][bot #1][09/17 09:18:57 PM]: Found nearby action! Action Name Mining guild ladder entrance , Source [x=3022, y=3337, z=0] -> [x=3022, y=9740, z=0].. name [perfect.scripting.script.a.b.a.nul@15f0f6b3] [iNFO][bot #1][09/17 09:18:58 PM]: Walking to next source: [x=3028, y=3364, z=0] ... keeps repeating this but when i pause and resume the bot works fine... not sure what to do don't really want to baby sit it the whole time (this was when bot was running for ~48minutes
    1 point
  36. Hey Czar! I'm really enjoy your scripts at the moment but I wanted to ask you if I could possibly swap my flesh crawlers one with your magic one instead, please let me know I need it more than I need the flesh crawlers!!
    1 point
  37. Just got banned ^^ Took regular breaks and only played 10-12hrs a day. I opened the script before I went to school and saw that there was an update to Runescape. The script tried to log into the game 20+ times and got denied constantly. Probably why I was banned. Thanks:(
    1 point
  38. Yeah but dude it's literally ONLY a dollar
    1 point
Γ—
Γ—
  • Create New...