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 Posts

  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. NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png
  8. NEW: Released Chop & Firemake plugin Added 8 Forestry events!!!!!!!! Easy 99, Next! Map Chooser System Progress Results! Help How to use this with Bot Manager? Script ID is 631, and the parameters will be the profile you saved in the setup window, e.g. oak15.txt I want a new feature added? Make a post below and I am always listening, within reason! The bot is doing something I don't like? Make a post below and I will adjust the code to match your play style!
  9. This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!
  10. NEW CURRENT RECORD: 294 HOURS RUNTIME! Shoutout to @Ruutihattu NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:
  11. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
  12. - 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
  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, I am selling an account I don't really know how to name, but I guess it's a good starter account: As you can see, the account has 5M left worth of items (membership needed for those), so the 5M will be added to the price. Starting bid: 13M Autowin: 25m Payment method: rsgp My conditions: I do not go first. Previous owners: my girlfriend, it's on her private e-mail so the e-mail will not be given. Don't worry about that though.
  15. 1 point
    Pretty cool - interesting to follow
  16. The question I want to ask you is.. Why did you sell your account and why did you do a service? You're TWC for a reason. You got warned in the past for trying to sell/offer services and you go against that by doing the same exact thing. The negative feedback will stay since you can't seem to follow simple rules.
  17. 1 point
    you have to access the directory first for where you have osbot saved
  18. hows the ban rate?
  19. - 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.
  20. 1 point
    Simply put, lifetime sponsor if you're wishing to bot and use the client and buy scripts to get discounts Donor if you want to be a bit of a show off
  21. 1 point
    Is this jonny if so fap material added to my library
  22. 1 point
    u sound like a fgt
  23. 1 point
    gold name actually considering sponsor now as it cheaper and unlocks mirror mode
  24. 1 point
    stick to fixed mode
  25. 1 point
    Some clips were loud and some were not, so not sure if it was your voice or if it was microphone not picking it up. & fixed mode and removing aspect ratio and dragging looks really nice imo.
  26. 1 point
  27. 50m Skype: Jonny.yagami
  28. 1 point
    I took a look at it, but didn't find the right way to do it. Even though Zach told me it is possible.. so still searching.
  29. will be 6.99 if allowed you wont be disappointed
  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. I honestly don't know myself anymore.
  32. 1 point
    should've bought lifetime sponsor
  33. Wew 1st post on the best zulrah script on osbot Iโ€™d like to say praise @ for creating this. Why? Well simply put users like him and @ create amazing scripts and push the limits. A FightCaves script and a Zulrah script isnโ€™t easy it requires effort and dedication. That being said, Iโ€™ve been grateful for being Fruityโ€™s friend and iโ€™ve watched him develop this script over the months and may I say this is the future of gold farming. If this didnโ€™t take away my virginity I donโ€™t know what did. Watching the creation of Fruityโ€™s Zulrah Script and the creation of FrostCaves not only did that give me the inspiration to create something myself Saiyanโ€™s GWD will hit the SDN in 2018 Fruity NMZ got me 99 Str and many other high combat skills. FrostCaves got me a fire cape and FrostBarrows got me m0ney This script however will make me a rich man hehe Thank the lord for blessing us with & the SDN wouldnโ€™t have been the same without them. P.S Saiyanโ€™s GWD script release is subject to (Saiyanโ€™s S2 rank being awarded back and Saiyan learning how to code )
  34. :?:

    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
  35. Figured this would be common sense by now.
  36. done! That's very unfortunate ... But you did run it for 12h+ instead of 1h ..?

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.