Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/27/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. Dear Community, I have removed the 100 post count limit to account sales, but they still need to be approved by a moderator before it shows up to the public. This is so people can respond without 100 posts to buy an account. We will not be approving any threads for account sales by new users, spammers, or any other thing we see suspicious. If you feel someone is suspicious, feel free to report the thread or pm a staff member. Thanks, @Maldesto
    4 points
  3. Can you show me where you claimed he can not resell this method? If not, I have no grounds to punish him at all. It is an unbanning method, if you gave it to him, he has the right to share it with anyone and charge what he wants.
    4 points
  4. There is no difference in ban chance.... It's a retarded myth.
    4 points
  5. ..........I spammed so hard for that 100 post count
    3 points
  6. High quality PSD available on demand.
    2 points
  7. I doubt it makes any difference, but that's my opinion only.
    2 points
  8. Mirror = waste of ram and cpu
    2 points
  9. 2 points
  10. So, neither of you claim to be leveling the account, even though Rambo said he is the original owner...?
    2 points
  11. 2 points
  12. 2 points
  13. Note: No additional quests or PoH interiors are required anymore. Please take the time to read through the following information, they may answer your questions If not, feel free to ask in this thread Barrows Barrows is a dangerous combat minigame, located in the southern parts of Morytania. The purpose of the minigame is to kill all 6 barrow brothers and finally claim their treasure, providing a chance to receive the unique and valuable barrows equipment, as well as other precious loot. Feature Guide Starting the script Proggies (Post your own in this thread to have them added) Change Log Troubleshooting FAQ Dynamic Signatures Bug report template http://frostbug.dk/dynsig_barrows.png?username=All
    1 point
  14. Since last semester ended, I have been working on a little project for a couple of weeks to learn and have some fun. I didnt actually intend to add it to the osbot client, I just started it as a separate project. Yesterday I decided I would add it on to the client for fun. Basically I wrote a server application in java, its hosted on a remote host. Anyone who has the client application can connect to the server. This is just a beta stage still, but its coming along nicely (in my opinion). It will keep track of online users etc. When you type '/online' it will print out a list of online users, as you can see in that image. It just pulls your username from the osb client and logs you on to the chat as that user. Current commands: '/online' - Prints the current online users. '/clear' - Clears all of the previous chat history from your client. What do you guys think? Would this be cool to add on to the client/scripts, or would it just be annoying if it poped up? Of course there could be an option when you run the script to connect or not.
    1 point
  15. FRIEND TOKEN: 0LQTG-BXNXH-AJWEB FRIEND TOKEN: EXIQ2-BCMND-IKE0R
    1 point
  16. Update:Arctic finished 85-99 chinning for me early morning today. He did a fantastic job and I am so thankful it went well.
    1 point
  17. Amen. Ain't worth 25m at all.
    1 point
  18. how do i delete the add on the bod client? its an add from welcome to turmoil. its a private server. it has an x but when i click it it doesnt dissapear.
    1 point
  19. It wasn't a joke! but if you want to talk conspiracy theories, I firmly believe 7/11 is an inside job!
    1 point
  20. Hey Czar I'm really enjoying the trial you gave me, Will have a nice proggie up in about 10 hours from now (if my trial survives that long) :P The only issue I'm having is that a few seconds after it finishes powerdropping it kind of actions like therre are more logs in the inventory. https://gyazo.com/28f66770cf1e1e80836c04c294521084 I don't think it's a huge issue at all but I thought i'd point it out. I'm using a custom location with the afk on and the "check axe" option on cutting oaks. (custom location was the best idea ever!!) Czar is love Czar is life, that is all.
    1 point
  21. Fuck yeah, this is awesome! Thanks! Now it's a challenge to see if i can keep 20% of the total xp :P
    1 point
  22. sweet I cant wait to us this!! same with arrows
    1 point
  23. Isn't the range too high for it to be an obby mauler? I mean, it's ranged based.
    1 point
  24. can i get a quick trial on this czar i bought ur ankous script but don't understand this one let me try it out?
    1 point
  25. If I'm not mistaking you have a deadlock. You're waiting indefinitely in a synchronization block locked on Main.class The EDT tries to enter a synchronization block also locked on Main.class in order to notify the above thread = The EDT cannot enter the synchronization block because a thread is waiting in the first synchronization block = The first thread is never notified
    1 point
  26. yea this will help, that way nobody has to spam the forums anymore
    1 point
  27. My bot keeps getting stuck at the bottom of the ladder. It's happened for sure 7 times today, and every single time I have to click on the ladder for it to go up. If I don't it just stands there and does nothing. There's nothing in the notepad thing that says anythings wrong (no java exceptions, null pointer exceptions, etc), it just keeps clicking the ladder when it runs toward the ore spots near the ladder it seems. My inventory isn't even full when it does it. Is there anyway to add in a check to see if ore < 26 it goes back up? Thanks.
    1 point
  28. ffs the bot got 2lvl defense on my pure, I'm not impressed it clicked several times when the cursor was going to do the special attack ))))))) glad it didn't got any more, since I was spectating the bot and quickly changed the attack style back also, I do have a high level of str, but the bot says im 50 level of str for some reason, and it calculates wrong levels which have been already achieved
    1 point
  29. breaks every 3 hours for 10-20 mins got 3 of them running for that long
    1 point
  30. Declare them outside of that method all that code is in (above the onStart). Also in the button listener do not REDECLARE just change the value i.e. not final String eLocX =, just eLocX = This should work for you.
    1 point
  31. Why is startLoc/endLoc a two dimensional array? It looks like it just needs to be a regular array of Strings. Also, we want to populate our JComboBox with an array, not a single string. As such, we pass the entire array not just the first element. final String[] startLoc = {"Lumbridge", "Varrock", "Falador", "Al Kharid", "Draynor Village"}; JComboBox<String> sLBox = new JComboBox<>(startLoc); final String[] endLoc = {"Lumbridge", "Varrock", "Falador", "Al Kharid", "Draynor Village"}; JComboBox<String> eLBox = new JComboBox<>(endLoc); We should not reassign startLoc's value, make a new variable and assign it to the select value! String startingLocation = sLBox.getSelectedItem().toString(); String endingLocation = eLBox.getSelectedItem().toString(); Now we have the String representation of both the ending and starting locations. if (startingLocation.equals("Varrock") && endingLocation.equals("Lumbridge")) { // do stuff! } I would suggest reading up a bit more about how all these components (arrays/Strings/2D arrays/combo boxes) work to get a better understanding of the Java language, but I hope what I provided helps you with your script.
    1 point
  32. Hey! Yeah sorry, it deleted it's self and posted, it's updated.
    1 point
  33. Ive had a cape a few times now, quests are just a pain in the arse. Kills time before i go out i guess.
    1 point
  34. I honestly see no problems with this script anymore. The run option is working perfectly now, aaaand i find that the bot immediately reboards the ship after the round finishes. IMO SO SATISFIED AND CAN'T SEE MUCH WAYS TO IMPROVE
    1 point
  35. How much RAM did you assign to it
    1 point
  36. For a blackmarket /runescape rule breaking website? Come on now. Unless it's scamming members i assume it's all above board?
    1 point
×
×
  • Create New...