Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leaderboard

Popular Content

Showing content with the highest reputation on 09/01/16 in all areas

  1. I know what your twc was for but ever since the new twc restrictions came into place you guys can only deal with buying currency. Selling accounts and services were RESTRICTED. Yet you decided to sell an account and offer a service? Why should we remove your FB when you didn't comply with our rules in the first place. You made the decision and now we have made ours. Next time Gardon don't go against the restrictions since at the end of the day it'll come back to haunt you just like it did this time. @Gardon future reference http://osbot.org/forum/topic/102513-trade-with-caution/
  2. ๐Ÿ‘‘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
  3. *If you think you can make a sexier thread than this, feel free, i wont even charge you.* *Going to submit SDN thingy ma bob sometime soon so yeah gl me* Not too sure what else to put... erm... yup. โ€‹Debating on making a leader board sort of thing and make a lil competition out of who makes the most in say a week or whatever it will be. Should be fun? **Ignore the fact it says current position for both circles and squares, circle positions are next positions**
  4. deadman is you playing for a week then stopping rs is u either being completely hooked or hardly playing find a dif game u can play casually and not be too invested -mod mat k
  5. 2 points
    hehe xd i wish u would b gone
  6. Could make you one from scratch so it's on your IP and you would be original owner. No chance of someone recovering then
  7. #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
  8. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
  9. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
  10. Molly's Flax Spinner This script spins flax into bow strings at lumbridge, the script easily exceeds 1.1k flax spun per hour. Buy HERE. Requirements: - 10 crafting Features: - Hopping out of bot worlds Setup: Just run the script, no GUI! CLI ID: 861 Proggies:
  11. - Solves the Tutorial Island from start to finish - Completes in 7 minutes - Generates a random character each time - Can be started from any point - Turns off music and sounds ............................................................................. Download Link: https://github.com/Explv/Tutorial-Island/releases/latest
  12. My only skype : live:felixfromsythe Official SOTM Winner! For prices contact me! Most recent order : Gengar - Signature Processing of Ordering: 1. Contact me on skype. 2. Place your order. 3. You're all done! Portfolio : https://infinitebyfelix.carbonmade.com/
  13. OK THIS IS NOT A TUTORIAL, THERE WILL BE NO EXPLINATION..! Ok start by creating a SQL table using this through myPHPAdmin: SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; CREATE TABLE `scriptdata` ( `username` text NOT NULL, `xp` int(11) NOT NULL, `runtime` bigint(255) NOT NULL, `id` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; ALTER TABLE `scriptdata` ADD PRIMARY KEY (`id`); ALTER TABLE `scriptdata` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; then make a php file call it what ever you want, I called mine validate.php. This file is responsible on validating the data, inserting and updating the database, it can only be accessed through custom useragent which is specified by the user (to prevent others from submitting fake details through browser)! <?php $useragent = "scriptX";//Change this to whatever you want, just make sure it matches w.e you put in javaside! $ua= $_SERVER["HTTP_USER_AGENT"]; if(!preg_match('/'.$useragent.'/', $ua)) { echo"GTFO out of here!"; } else { $database_name = ""; $servername = "localhost";//database host $username = "root";//database username $password = "";//database password $runtime=$gainedXp=$rsn=""; // Create connection $conn = new mysqli($servername, $username, $password, $database_name; // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } if ($_SERVER["REQUEST_METHOD"] == "GET") { $rsn = mysqli_real_escape_string($conn, $_GET["rsn"]); $gainedXp = mysqli_real_escape_string($conn, $_GET["gainedxp"]); $runtime = mysqli_real_escape_string($conn,$_GET["runtime"]); } $sql = "SELECT * FROM scriptdata WHERE `username`='".$rsn."'"; $result = $conn->query($sql); if($result->num_rows > 0) { while($row = $result->fetch_assoc()) { $prevXp= $row["xp"]; $prevTime = $row["runtime"]; $prevXp+= $gainedXp; $prevTime+= $runtime; $sql = "UPDATE scriptdata SET xp=".$prevXp.", runtime=".$prevTime." WHERE `username`='".$rsn."'"; if($conn->query($sql) === TRUE){ echo "DATA WAS UPDATED"; } else { echo "ERROR UPDATING DATA! ". mysqli_error($conn); } } } else { $sql = "INSERT INTO scriptdata(`username`,`xp`,`runtime`) VALUES('".$rsn."',".$gainedXp.",".$runtime.")"; if($conn->query($sql) === TRUE){ echo "DATA INSERTED"; } else { echo "ERROR INSERTING DATA!<br>". mysqli_error($conn); } } } ?> After that, make another php file call it w.e you want, mine is called sig.php. This is the actual file which gonna retrieve the information from the database and display them on a picture! <?php function ftime($time) { $text = ""; $secs = (intval(intval($time) / 1000)); $hrs = $secs / 3600; $m = $secs / 60 % 60; $secs = $secs % 60; if($hrs < 10) { $text.="0".$hrs; } else { $text.=$hrs; } $text.=":"; if($m < 10) { $text.="0".$m; } else { $text.=$m; } $text.=":"; if($sec < 10) { $text.="0".$secs; } else { $text.=$secs; } return $text; } $database_name = ""; $servername = "localhost";//database host $username = "root";//database username $password = "";//database password $sig_file = "sig.png";//signature picture path $font_path = 'bboron.ttf';//font file path $rsn = ""; $conn = new mysqli($servername, $username, $password, $database_name); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } if ($_SERVER["REQUEST_METHOD"] == "GET") { $rsn = mysqli_real_escape_string($conn, $_GET["rsn"]); } $sql = "SELECT * FROM scriptdata WHERE username='".$rsn."'"; $result = $conn->query($sql); if($result->num_rows > 0) { while($row = $result->fetch_assoc()) { //Set the Content Type header('Content-type: image/jpeg'); $xp = $row["xp"]; $runtime = $row["runtime"]; $formated = ftime($runtime); // Create Image From Existing File $pngimage = imagecreatefrompng($sig_file); // Allocate A Color For The Text $black = imagecolorallocate($pngimage, 0, 0, 0); // Print Text On Image //imagettftext(imagefile, text size, ange, x, y, text color, font_file, text); imagettftext($pngimage, 16, 0, 115, 45, $black, $font_path, $rsn); imagettftext($pngimage, 16, 0, 115, 85, $black, $font_path, $xp); imagettftext($pngimage, 16, 0, 115, 124, $black, $font_path, $formated); // Send Image to Browser imagepng($pngimage); // Clear Memory imagedestroy($pngimage); } } else { echo "user does not exist!"; } ?> JUST MAKE SURE TO CHANGE THE INFO OF THE DB, FONT AND IMAGE TO MATCH YOURS! Now to send data from your script use this first declare two variables //Your url private static final String URL = "http://yourwebsite.com/validate.php?"; //put it the same as the one in PHP! private static final String USER_AGENT = "scriptX"; and use this function to send data public static void sendData(String rsn, int xp, long runtime) { String vars = URL + "rsn=" + rsn + "&gainedxp=" + xp + "&runtime=" + runtime; StringBuilder result = new StringBuilder(); URL url; try { url = new URL(vars); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); conn.addRequestProperty("User-Agent", USER_AGENT); BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream())); String line; while ((line = rd.readLine()) != null) { result.append(line); } System.out.println(result.toString()); rd.close(); } catch (Exception e) { } } And thats all! Few notes, 1) The data only being sent are the username, xp gained and runtime.. you can add more but you have to edit all the files to match your changes. 2) dont judge my php i dont even know that language i just put some code i googled together! 3)Thanks for Xylate for helping me with php. you can see live example : http://scriptme.ga/sig.php?rsn=zezima (Remove if this is against the rules) Have fun!
  14. Hello, as the title says im looking for hunter accounts. Preferably 65+ but 63 accounts works too. Will most likely pay for the hunting lvls only, but it depends. Price ofc depends on your feedback and i wont buy from people with low feedback. I'd prefer one without any earlier bans. If you have a ban on the account i will pay much less. PM me or post below, thanks //Fishing
  15. Well here it goes, my first gmauler build in 10 years of playing RS No bots will be used Goals and other Time Played: ??? Combat Level: 64 Quest Points: 67 60/60 Attack 73/99 Strength 50/99 Range 50/99 Magic 43/43 Prayer 28/55 Slayer 780/1500 Total Level Climbing Boots Unholy Book Mithril Gloves (3/5 Sub-quests completed) All Possible QP with 1 Defence and 43 Prayer Animal Magnetism Monkey Madness I Desert Treasure
  16. 1 point
    bruv.. why xbox
  17. 1 point
    PS4 but the last time i touched it was christmas 2015 lol
  18. Can i get a trail for this please.
  19. No he was not. But I'm going to give him a chance still to prove why we should remove his feedback. He's already given some evidence so can you also send me the chat log screenshots if possible with the time of the message being sent too (the date) would be nice. @, I'd like the full screenshot chatlogs also since you only sent three.
  20. 1 point
    thanks muffins it worked :p
  21. thanks im currently making another zerk and a sotd pure
  22. - Script name Khal Pest control - trial length 12 hours, if not available 6. - Reason for trial testing weather it is worth to buy and use on all acc's. - Are you ging to give feedback on the script? ofcourse. Thanks.
  23. 1 point
    Is this jonny if so fap material added to my library
  24. 1 point
    You are a faggot
  25. 1 point
    mmmm,,.,, sound fake ?
  26. T.O.S BY posting you Acknowledge and abide by these T.O.S and the OSbot global T.O.S I will not be held liable for any bans/mutes/loss of items during/after Account is sold. โ€‹You Acknowledge all account's have been hand trained making you liable for all bans/mutes. You acknowledge the account will be recovered in the case of any charge backs win or loss โ€‹you forfeit the right to open a dispute for bans/mutes/hacks as you are responsible for the account once its in your possession.
  27. 1 point
    LOL that first barrow chest killed me
  28. damn sold my last one yesterday
  29. I'd say its a decent starter main yea, good luck on your sale
  30. 1 point
    I will be adding clue looting over the weekend And if you refresh your scripts list, the script should now be there! apa Thanks for taking the time to writing this review I will take what you've said on board. Cheers! ~apa
  31. 1 point
    atta boy
  32. Order done as he stated. Was super nice and did all I asked for my logo. Thx! 10/10!
  33. 1 point
    Rsc is nice, but I'd rather play a private server where it isn't all bots and auto casters.
  34. Shortbread and a lot of baileys
  35. 1 point
    get a better dick.
  36. 5 def? get this out of here
  37. I've written an update that should fix your problems. I tried pushing it to the SDN but my laptop can't do that. I'll try to get to my scripting pc tomorrow evening. If i wasn't able to, i'll let you guys know. The update's version number is 1.31. In this update i've temporaly disabled Progressive-Mode. I'll enable and rework this mode once i've got time. Sorry for the delay; this will not happen again.
  38. Doing a similar order at the moment, averaging around 10-18k exp p/h with 33 Strength, Bneck and Toktz Xil Ak 25m 07. Hand Trained, no bots, all screenshots provided.
  39. :?:

    1 point
    I do believe this is to blame: Also the other javascript based animations (names), should use CSS animations :p Edit: Did a lil profiling and it is indeed all the stuff being painted, maybe a low cpu version is needed for the site too Edit 2: Seems all the GIFs are too blame, lol
  40. May the vagg be sweaty!
  41. 1 point
    Can you please randomize the routes the bot take to reset while in camp mode, I think Bot watch catches on to that repetitive routes quickly? It seems that I keep getting my acc banned even when using different vsps which I bot on for only 4-5 hours per day with 30 minute breaks.

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.