![]() |
[SCRIPT] Script For Removing "Save And Exit" - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: [SCRIPT] Script For Removing "Save And Exit" (/thread-53782.html) |
Script For Removing "Save And Exit" - AFSStudio - 06-24-2017 I'm looking for a simple script that remove the "Save And Exit" on the game menu. Which I want to make a game like Amnesia: Justine. If someone knows how to do it I will be happy. RE: Script For Removing "Save And Exit" - Romulator - 06-24-2017 Unfortunately, such a thing does not exist as a script. You can, in a way, "hide" the option in the menu so that it becomes difficult to click on or an invisible selection, but you should use a Full Conversion mod for this if you're not already. Locate the below line in base_english.lang, and remove the text entry so it becomes null. Code: <Entry Name="ExitAndSave">Save and Exit</Entry> Like this: Code: <Entry Name="ExitAndSave"></Entry> RE: Script For Removing "Save And Exit" - AFSStudio - 06-25-2017 Thanks. I have to use a Full Conversion Mod. I need a guiding line and thats it. I wanna make sure if there is an easy way. RE: Script For Removing "Save And Exit" - 7heDubz - 06-25-2017 Technically they can still click on it if they find the one pixel on the screen that allows it >.< But that's the way to go about it =) RE: Script For Removing "Save And Exit" - FlawlessHappiness - 06-25-2017 A full conversion is harder than a normal custom story, but when you understand it, it's not that hard. Try looking at this: http://www.frictionalgames.com/forum/thread-11120.html There's also this one from the wiki: https://wiki.frictionalgames.com/hpl2/amnesia/full_conv RE: Script For Removing "Save And Exit" - AFSStudio - 06-25-2017 I found a way to create this mod. I'm playing InLucysEyes in this moment and this mod is pretty good. And I'm taking a look in any file how this guy create his game and his way. This is my way to learn... ![]() And it shows me the same script like your link... Thank you, FlawlessHappiness. I've got a way to do it. RE: Script For Removing "Save And Exit" - FlawlessHappiness - 06-25-2017 Having a "testmod" that already contains all the files is a very useful way to learn. If you need it, the first link I put in my previous post has a "clean" full conversion. Almost empty of any code, but contains all the files. RE: Script For Removing "Save And Exit" - Mudbill - 06-25-2017 There's an updated template at the bottom of the wiki page as well. Would recommend (and not just saying since I made it ![]() |