Monomoy 1 Posted April 14, 2022 Report Share Posted April 14, 2022 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. Link to comment Share on other sites More sharing options...
baaail 17 Posted April 16, 2022 Report Share Posted April 16, 2022 keep making these guides great work.! Link to comment Share on other sites More sharing options...
Auom 0 Posted April 24, 2022 Report Share Posted April 24, 2022 thanks for the guide! Link to comment Share on other sites More sharing options...
mrwalkhimdown 1 Posted June 10, 2022 Report Share Posted June 10, 2022 gonna try this out on my server, thanks! Link to comment Share on other sites More sharing options...
jonas1373 0 Posted June 26, 2022 Report Share Posted June 26, 2022 nice Link to comment Share on other sites More sharing options...
Bizno 0 Posted July 2, 2022 Report Share Posted July 2, 2022 Thanks needed this Link to comment Share on other sites More sharing options...
Kasiimee 0 Posted July 19, 2022 Report Share Posted July 19, 2022 There are tutorials for this Link to comment Share on other sites More sharing options...
randobando 0 Posted October 24, 2022 Report Share Posted October 24, 2022 nice gonna try this Link to comment Share on other sites More sharing options...
Gahoogy 0 Posted December 27, 2022 Report Share Posted December 27, 2022 Nice work, thank you! Link to comment Share on other sites More sharing options...
nsin25 0 Posted February 7, 2023 Report Share Posted February 7, 2023 Very useful, thank you! Link to comment Share on other sites More sharing options...
oakmills 1 Posted March 8, 2023 Report Share Posted March 8, 2023 thanks for the guide Link to comment Share on other sites More sharing options...
Martin 0 Posted March 11, 2023 Report Share Posted March 11, 2023 . Link to comment Share on other sites More sharing options...
iDabz19944 0 Posted March 26, 2023 Report Share Posted March 26, 2023 thanks Link to comment Share on other sites More sharing options...
BigZeta 0 Posted April 11, 2023 Report Share Posted April 11, 2023 im goint to use this, thanks!!! Link to comment Share on other sites More sharing options...
Jesus RSPS 0 Posted April 13, 2023 Report Share Posted April 13, 2023 Thank you! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now