Rakazul Posted May 16, 2023 Share Posted May 16, 2023 Hello, recently I reinstalled FO4 with mods. When I try to place a magazine in the rack or shelf for magazines, it shows me a message : "You can only store Magazine in the rack/shelf". I can see that it transfers the magazine and immediately shows me the message and returns the magazine in the inventory. Link to comment Share on other sites More sharing options...
LarannKiar Posted May 21, 2023 Share Posted May 21, 2023 (edited) This message is displayed if the item you're trying to put on the rack doesn't have the keyword "PerkMagKeyword" (its FormID is 001D4A70). From the vanilla script: ;item is NOT a Magazine, give it back to the player debug.Trace(self + "OnItemAdded() Item was NOT a Magazine, giving it back to the player.") ;utility.WaitMenuMode(0.1) RemoveItem(akBaseItem, aiItemCount, false, Game.GetPlayer()) MagazineRackContainerNotMagazineMessage.Show() Since all vanilla magazines have this keyword attached to them, you may have a mod that edits either the magazine racks or the magazines. If you drop a magazine on the floor, grab it, then open the console and type "GetPlayerGrabbedRef", the console returns the item's RefID. Then you can use the command "RefID.HasKeyword PerkMagKeyword" to check that the item has the magazine keyword at all. Just replace RefID with the item's actual RefID. If HasKeyword returns true (' >> 1'), then probably the magazine rack or its script has been modified by a mod. Edited May 21, 2023 by LarannKiar Link to comment Share on other sites More sharing options...
Recommended Posts