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.

Bot

Members
  • Joined

  • Last visited

Everything posted by Bot

  1. The reasoning behind it I think is performance. HTML5 is a pretty recent language like Bythex said and it brings a lot of great web features to the table. RuneScape is a web based game and it makes sense to use a more web orientated platform.
  2. (This is my second time typing this entire thread) The Switch Statement Part of this knowledge comes from: http://docs.oracle.com/javase/tutorial/java/nutsandbolts/switch.html The switch statement is a cleaner, faster way to show multiple if else statements. In a switch block, a Character, Byte, Short, Integer, String or Enum can be used. Here is an example using String switch(myString) { case "A": break; case "B": break;} Enums use the Enum constants when switching. For example: switch(myEnum){ case MEnum.Foo; break; case MEnum.ooF; break;} Note that the only time the cases are enclosed within quotation marks( " ) is when we are using a String. Also notice the fact that we use a break after every case. This is to prevent falling through to the next case. For example switch(myString) { case "A": case "B": break;} In the case of A, not only will everything under the case of A be executed, but so will everything following that unless it is broken with a break Extra Information from thiefmn6092: The Ternary Operator You can consult: http://alvinalexander.com/java/edu/pj/pj010018 if you find this unclear. However, if you do please let me know. The ternary is another way of replacing an if else statement that might look like if(myInt == 2) { someInt = 5;} In a ternary, this would look like someInt = myInt == 2 ? 5 : someInt; Here's a breakdown of what just happened. The structure of a basic ternary is field = (Condition) ? (Action) : (Default Action/What happens if the condition is failed) The condition is any condition that you would normally meet in an if statement. If you have an if statement like this if(myInt == 2 || myInt == 4 || myInt == 6) { someInt = 5;} Then the ternary would look like someInt = myInt == 2 || myInt == 4 || myInt == 6 ? 5 : someInt; You can also stack multiple ternaries into one statement so where the default action would be we can say someInt = myInt == 2 || myInt == 4 || myInt == 6 ? 5 : myInt == 8 ? 10 : -1; That is the same as saying if(myInt == 2 || myInt == 4 || myInt == 6) { someInt = 5;} else if(myInt == 8) { someInt = 10;} else { someInt = -1;} The ternary just puts it into one neat little line. Of course you can apply your java syntax knowledge and use brackets. Let me know if I missed anything, this is my second attempt so I'm kind of worn.
  3. Bot posted a topic in Spam/Off Topic
    Anybody wanna game on BO2? I play on PS3 my name is BotMw Here's an image from when I went 148-5 .
  4. Bot replied to Eka's topic in Archive
    Welcome to OSBot. Be sure to read the announcements to get up to date. What's Estonia like? Also, I can teach you scripting once I get my hands on the Bot.
  5. Bot replied to Raflesia's topic in Archive
    Welcome to OSBot *censored*. You wanna teach me some of your native language?
  6. Well there goes the Beta and I'm not an official script developer yet. I hope the developers are getting on with the day they have and hope we could see some scripts.
  7. Four. Staff: YOU SHALL NOT POST!
  8. Bot replied to Tom1's topic in Software Development
    So this is basically events with an extra integer to tell which cycle it is on. Thanks for your input Thomas however I disagree with what you're passing this as.
  9. If either of these kicks in to action I would like for it to be the Twitter. That's the only medium other than the site that I'd use.
  10. Bot replied to Raflesia's topic in Archive
    I agree with you. Just not the PHP part that language needs to burn imo.
  11. Bot replied to Tom1's topic in Spam/Off Topic
    Pretty standard desktop
  12. Bot replied to Bot's topic in Archive
    I'll get you contact with velo again.
  13. Bot replied to Bot's topic in Archive
    Na I'm not velocity. I'm pretty sure I applied for scripter correctly by PMing Maxi my application which is 'Not So Ideal' .
  14. Bot posted a topic in Archive
    No, I don't mean Bot as in an actual Bot but who knows maybe I might automate my forum account . Hi viewers of this thread and possible forum members I am Bot. I play PSN and I also write code primarily in Java and C#. I have the ability to expand this to far more languages cause I excel in code logic. That's all about me I guess, my PSN is BotMw if you're interested. If you want me to help you with your code maybe inspect your logic/code quality I can surely do that for you just ask velocity .

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.