Jump to content
View in the app

A better way to browse. Learn more.

RuneSuite RSPS Development

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.

Featured Replies

Posted
comment_75245
Quote
ADMIN_CAN_TRADE = false, ADMIN_DROP_ITEMS = false, ADMIN_CAN_SELL_ITEMS = false,

Using 2006Scape Open Source, you are going to want to look for the above - this can be used to add ironman mode restrictions to normal players.

 

Quote
if (player.playerRights == 2 && !GameConstants.ADMIN_CAN_TRADE) {
   player.getPacketSender().sendMessage("Trading as an admin has been disabled.");
   return;
}

Then you will want to change the "playerRights == 2"
If changed to "playerRights == 0" then players will receive the sendMessage when attempting to trade.
"Trading as an admin has been disabled." can be changed to "Trading as an ironman has been disabled."

Next you will want to change how items appear in stores as this is another popular method to transfer items.

 

Quote
// Add item to the shop
//addShopItem(unNotedItemID, amount); // this is the line you should comment out
player.getItemAssistant().resetItems(3823);
resetShop(player.shopId);
updatePlayerShop();
return true;

By commenting out 1 line of code, now items sold to shops won't appear in stock to other players. 

  • 2 weeks later...
  • 1 month later...
  • 3 weeks later...
  • 3 weeks later...
  • 3 months later...
  • 2 months later...
  • 1 month later...
  • 1 month later...
  • 2 weeks later...
  • 3 weeks later...

Create an account or sign in to comment

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.