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.

Flamezzz

Members
  • Joined

  • Last visited

Everything posted by Flamezzz

  1. I think this issue is still not fixed...
  2. For completeness, the good old filter List<GroundItem> list = groundItems.filter(i -> <conditions>) groundItems.filter(i -> i.getName().equals("name")); Still prefer this one over java 8 streams cuz it's unreadable.
  3. Noted items is not an issue, you could use inventory.getItem(i -> i.getName().equals(name) && !i.isNote())
  4. Mine is open as well
  5. "Not much is currently known about this mode, aside from the following: Deadman mode is expected to mirror Old School mode as far as map and quests are concerned." Same engine I guess so in that case it shouldn't be difficult to support this for osbot.
  6. Mhm could be, but it's working so I'll just keep it this way for now :p Thanks for this tut and your suggestion
  7. Yep. The image was displayed correctly in a post, it just didn't work in a signature.
  8. When adding the image to my sig IPB said: "Unable to retrieve signature image dimensions, please try another image." Tried a lot of things but it didn't work, so eventually I just outputted all images to a folder and now run a cron job every 10 min.
  9. Keep in mind that for a simple script you don't have to and probably shouldn't create additional classes, it will only complicate things.
  10. Edit: fixed it by generating sigs every 10 min... "Unable to retrieve signature image dimensions, please try another image." Dafuq is this? I get this when I try to put the image in my signature... Halp anyone plz? (/care about the text atm) http://www.flamezzz.nl/signature.png?user=flamezzz&script=fcluehuntereasy Dimensions = 500x150, even windows can read this so I assume the file is not corrupt in any way. signature.php <? Header('Content-type: image/png'); ..... ..... $image = @imagecreatefrompng('./cluehuntereasy.png') or die("Picture not found."); $black = imagecolorallocate($image, 0, 0, 0); $white = imagecolorallocate($image, 255, 255, 255); imagecolortransparent($image, $black); imagealphablending($image, false); imagesavealpha($image, true); ..... ..... imagettftext($image, 15, 0, 370, 58, $white, $font, $row['solved']); imagettftext($image, 15, 0, 370, 107, $white, $font, $runtime); imagettftext($image, 15, 0, 370, 153, $white, $font, $profit); imagettftext($image, 20, 0, 50, 153, $white, $font, $row['name']); imagepng($image); imagedestroy($image); mysql_close(); ?>

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.