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.

Drow

Members
  • Joined

  • Last visited

Everything posted by Drow

  1. you dont need to learn them all, its all about syntax but the logic is always the same thats what makes learning new language so easy when u allready know one of them. HTML isnt programming language its markup language,its just plain text for browsers just like xml
  2. no bans wouldjust kill runescape
  3. http://www.homeandlearn.co.uk/ best site that really helped me Thenewboston @youtube basically hundreds of tutorials really helps and when u get the basics try this http://codingbat.com/java all u have to worry about is the logc very very good page
  4. Yes,all the code does is downloading the string getting world and players and then another button download the string again and then compares 2 arrays,but the problem is when i download string again the world in there are in different order example 1st time download w1 w2 w3 2nd w3 w1 w2
  5. I decided to make a program that checks traffic on rs worlds(for me and m8s just to go looting whenever clans hop) i got it work but the string i get from rs world select page changes every time i dl it so can any1 give me a tip how to mach the correct world with players heres the code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Diagnostics; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } string inf = ",1"; int counter = 0; int[] p = new int[60]; int[] w = new int[60]; int[] vahe = new int[60]; int[] ws = new int[60]; string Players = ""; string World = ""; System.Net.WebClient client = new System.Net.WebClient(); private void button1_Click(object sender, EventArgs e) { listBox1.Items.Clear(); listBox1.Items.Add("World" + " " + "Players"); System.IO.StreamWriter sw = new System.IO.StreamWriter("C:\\world.txt"); string world = client.DownloadString("http://oldschool.runescape.com/slu"); sw.Write(world); sw.Close(); System.IO.StreamReader sr = new System.IO.StreamReader("C:\\world.txt"); for (int i = 1; i < 681; i++) { string l = sr.ReadLine(); if (l.Contains(inf)) { Players = l.Substring(29, 3); World = l.Substring(4, 3); Players = Players.Replace(",", ""); counter++; if (Players.Length == 2 && World != "316") { Players = l.Substring(28, 3); Players = Players.Replace(",", ""); } if (World == "317") { Players = l.Substring(30, 3); } if (World == "302") { Players = "1" + Players; } p[counter] = Int16.Parse(Players); listBox1.Items.Add(World + " " + Players); } } sr.Close(); counter = 0; } private void button2_Click(object sender, EventArgs e) { listBox2.Items.Clear(); listBox2.Items.Add("World" + " " + "Players" + " " + "+/-"); System.IO.StreamWriter sw = new System.IO.StreamWriter("C:\\world.txt"); string world = client.DownloadString("http://oldschool.runescape.com/slu"); sw.Write(world); sw.Close(); System.IO.StreamReader sr = new System.IO.StreamReader("C:\\world.txt"); for (int i = 1; i < 681; i++) { string l = sr.ReadLine(); if (l.Contains(inf)) { Players = l.Substring(29, 3); World = l.Substring(4, 3); Players = Players.Replace(",", ""); counter++; if (Players.Length == 2 && World != "316") { Players = l.Substring(28, 3); Players = Players.Replace(",", ""); } if (World == "317") { Players = l.Substring(30, 3); } if (World == "302") { Players = "1" + Players; } w[counter] = Int16.Parse(Players); vahe[counter] = (w[counter] - p[counter]); listBox2.Items.Add(World + " " + Players + " " + vahe[counter]); } } sr.Close(); counter = 0; } private void Form1_Load(object sender, EventArgs e) { this.FormBorderStyle = FormBorderStyle.FixedSingle; } } } its sloppy code cuz i wanted to put it together quickly btw is C#
  6. So this script doesnt work no more?
  7. Can anyone explain how walking works in osbot. Only thing that came up in mind was split path to areas and then check if the player is in that area and then move to next.

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.