GreyBlackwell Posted March 19, 2015 Posted March 19, 2015 Hi, I'm relatively new to making mods and I had a question about making custom doors. I'm making a interior cell as a go between my custom world and Tamriel, so I made a boat "door" or portal to take me to that cell. So when I go to use it, it says "Open The Savana" which is the name of the Boat I am using as a go between. The question is: Is there anyway to change the Dialogue/Text on Doors/Portals to where it say "Go to" or "Take the" instead of just the normal text "Open"? Thanks for the help. :smile:
Aragorn58 Posted March 19, 2015 Posted March 19, 2015 (edited) Hi, I'm relatively new to making mods and I had a question about making custom doors. I'm making a interior cell as a go between my custom world and Tamriel, so I made a boat "door" or portal to take me to that cell. So when I go to use it, it says "Open The Savana" which is the name of the Boat I am using as a go between. The question is: Is there anyway to change the Dialogue/Text on Doors/Portals to where it say "Go to" or "Take the" instead of just the normal text "Open"?You can try placing an OnActivate script on the door that opens a message box to display any thing you want. AFAIK there is no way to change the default "open" message that appears when you click on a door. Had to do something similar in the past. You might try something like this: Scriptname DoorMessageScript extends Activator Event OnActivate(Activator MyActivator) Debug.MessageBox("Whatever Message you Want") EndEvent ObjectReference Property myDoor Auto Activator Property MyActivator Auto Just fill the properties in the CK. Edited March 19, 2015 by Aragorn58
Recommended Posts