Jump to content

YoHoJo

Suspended
  • Posts

    1303
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by YoHoJo

  1. Checkout these results for lots more info https://www.google.com/search?q=site%3Aosbot.org+mirror+vs+injection
  2. Get detailed, custom script stats for your scripts with a simple JSON POST request! Use to showoff and market your script.
  3. I agree! Ideally it'd accept 0 or as many parameters as needed for different task/amounts. Please do ?!
  4. Bunp Add to your script with a simple JSON POST request! Use to showoff and market your script!
  5. Bunp Add to your script with a simple JSON POST request! Use to showoff and market your script!
  6. @Eagle Scripts thanks! Don't just watch, be a part of the future :p!
  7. Runescape Bot Stats RSBotStats is an API that allows scripters to easily track tasks their scripts have accomplished. Add to your script with a simple JSON POST request. Use to showoff and market your script! Real stats from a cooking script! Getting Started with the API Sign up and add your script here Find your API Key and Script ID here Send a POST request to upload your stats. We recommending sending 1 request on script end. Example Request URL: http://pure-woodland-47666.herokuapp.com/api/v1/commits?user_email=YOUR_EMAIL&user_token=YOUR_API_KEY Body: {"commit":{ "script_id": "X5VTnp", "user_id": "qN4tOb", "runtime": 75.666, "stats_attributes": [ { "task": "Trout Caught", "amount": 28 }, { "task": "Lobster Caught", "amount": 70 }] }} Parameter Notes At the very least, a commit requires `script_id`, `user_id`, and `runtime` `runtime` is in minutes `stats_attributes` are for tracking any sorts of tasks your script does. ex: Fish Caught, Yews Chopped, XP Gained, GP gained, etc. `user_id: qN4tOb` is the catch-all user. Use this as default. Example Java JSON POST method I'm not too familiar with Java. If someone could share a method to create a JSON post request, "that would be great". Here's an example from a scripter named Encoded which you can use with some minor tweaks: public static void commit(long runtime, int experience) { try { runtime = (int) (runtime / 1000 / 60000); String payload = "{\"commit\":{\"script_id\": \"" + SCRIPT_ID + "\",\"user_id\": \"qN4tOb\",\"runtime\": " + runtime + ",\"stats_attributes\": [{\"task\": \"XP Gained\", \"amount\": " + experience + "}]}}"; URL url = new URL(URL + "?user_email=" + EMAIL + "&user_token=" + API_KEY); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setDoOutput(true); conn.setDoInput(true); conn.setRequestMethod("POST"); conn.setRequestProperty("Content-Type", "application/json"); conn.connect(); byte[] data = payload.getBytes(StandardCharsets.UTF_8); DataOutputStream wr = new DataOutputStream(conn.getOutputStream()); wr.write(data); wr.flush(); BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream())); StringBuilder stb = new StringBuilder(); String line; while ((line = rd.readLine()) != null) { stb.append(line).append("\n"); } wr.close(); rd.close(); if (conn.getResponseCode() == 201) { Logging.debug("Successfully sent script statistics to RS Script Stats."); } else { Logging.debug(stb.toString()); } conn.disconnect(); } catch (IOException ignored) { } } More To Come! Eager to continue development of this, open to all suggestions and constructive criticism! Scripters, please use this, thank you Are you a script user who wants to showoff their stats for a script? Bug the script author to implement this API, it's easy!
  8. Online and selling gold, prices dropped! Contact Us:Click here to message on Forums(We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  9. Online and selling gold, prices dropped! Contact Us:Click here to message on Forums(We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  10. Online and selling gold, prices dropped! Contact Us:Click here to message on Forums(We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  11. Online and selling gold, prices dropped! Contact Us:Click here to message on Forums(We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  12. Easy come. Easy go. Most likely, you'll need to pay the negative $25 balance before buying things form OSBot.
  13. Online and selling gold, prices dropped! Contact Us:Click here to message on Forums(We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  14. It looks like OSBot's DDOS protection service (Cloudflare) is blocking your IP since it thinks it's suspicious. You might need to get your IP manually whitelisted by a staff here.
  15. Have you tried resetting password using forgot password link?
  16. That feature is called "Mirror Mode" at OSBot. Make sure you're using the right program or forums for your question:p.
  17. Try running 1 tab per client. See if you can set larger heap size (not sure if this is a setting) Check your task manager to see if RAM or CPU is maxed, if not that's not the issue. OSBot also has a Low CPU option, make sure you're using that. Hope this helped
  18. Someone help this man get his agility up so he can drop AstroWorld faster!
  19. Online and buying RS07 gold with Bitcoin & PayPal! We pay all fees! Contact Us: Click here to message on Forums (We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  20. Online and buying RS07 gold with Bitcoin & PayPal! We pay all fees! Contact Us: Click here to message on Forums (We keep our notifications on, will reply quickly if we are online!) Discord: YoHoJo#4756
  21. I'd recommend buying a VPN from one of the 100s of trusted VPN companies out there.
  22. YoHoJo

    Will it run Rs07?

    Yes "System requirements 256 MB RAM 1 GHz CPU" http://oldschoolrunescape.wikia.com/wiki/Old_School_RuneScape "Safe Mode Processor (CPU): Intel Pentium, Intel Celeron, Intel Core and Intel Mobile or AMD Mobile series/single and Dual core. Graphics: SiS, Matrox, Intel GMA series, Intel HD series, Via Chrome, GeForce 4, ATI 9xxxx Memory: 1GB DDR+" https://support.runescape.com/hc/en-gb/articles/206558749-Recommended-Specifications-and-Other-Requirements I Googled "oldschool runescape requirements" to find this information.
  23. Major gold sites are paying around/higher than this rate currently. I think you may need to up your rate to get any offers. #justatip
  24. It's not as simple as the glory days, where you could just set & forget. But, lots of people gold farm successfully. It just takes some time, practice, and experimentation to figure out what works best for you and your method.
×
×
  • Create New...