Silveredge9 Posted December 15, 2007 Share Posted December 15, 2007 I've been wondering how I would add into a module at a location, one of those trigger things that are responsible for transporting the player from module to module. I've seen it done in RedHawkes ORD Mandell Mod. So far I've managed to get a transition box (that would say Go to some place) to appear on screen when your positioned in a specific area using a trigger, but no text shows up within this box. A screenshot showing what I'm trying to figure out is shown below. Clickly Any help on this would be greatly appreciated, it's something that's been bugging me recently. Link to comment Share on other sites More sharing options...
Darth InSidious Posted December 15, 2007 Share Posted December 15, 2007 With difficulty, as I recall. Basically, you set a trigger, much like a normal one. There are several key pieces of information you'll need to keep in mind, however:- 1) Set the .utt to "Transition". 2) In the .GIT, the XYZ co-ords in the main part of the node are the centre. 3) The others, which are in a subnode, have relative positions to the main one. Hope that helps. I've probably missed out something key, 'tho >.< Link to comment Share on other sites More sharing options...
Silveredge9 Posted December 15, 2007 Author Share Posted December 15, 2007 With difficulty, as I recall. Basically, you set a trigger, much like a normal one. There are several key pieces of information you'll need to keep in mind, however:- 1) Set the .utt to "Transition". 2) In the .GIT, the XYZ co-ords in the main part of the node are the centre. 3) The others, which are in a subnode, have relative positions to the main one. Hope that helps. I've probably missed out something key, 'tho >.< Yeah, I'm already familar with how to set a trigger. Setting Transition triggers is different though. From looking at the .git files of existing areas - no transition triggers are actually defined... yet they somehow appear in game. When I add a custom Tranisition trigger to a map using an existing transition trigger as a template, it shows up in game in my defined location... but it's blank - and nothing happens when you walk into it. Link to comment Share on other sites More sharing options...
Quanon Posted December 15, 2007 Share Posted December 15, 2007 Yeah, I'm already familar with how to set a trigger. Setting Transition triggers is different though. From looking at the .git files of existing areas - no transition triggers are actually defined... yet they somehow appear in game. When I add a custom Tranisition trigger to a map using an existing transition trigger as a template, it shows up in game in my defined location... but it's blank - and nothing happens when you walk into it. Mostly those transitions are at doors right ? After looking at some walkmeshes from areas , it looks like certain parts have their own assigned "DOOR" material , walkmeshes get devided in certain parts , like Dirt or Stone and Door to . Mostly you spawn in the Door part to . Maybe the triggers get info about that some way ? Dunno , cause then again certain areas don't use it . Anyway , I'm babbeling beyond my knowledge ... So ignore the post Link to comment Share on other sites More sharing options...
Darth InSidious Posted December 15, 2007 Share Posted December 15, 2007 That would be because some doors automatically link to a new area, by a method I don't really understand. Looking at my transition triggers for Azgath's Tomb, "Faction" should be "Hostile_1", "Type" should be "Transition" and "Cursor" should be "1". Warping scripts should be attached to either OnTrapTriggered or ScriptOnEnter (or both to cover redundancies ). In the .GIT file, you need some extra fields, too. In a standard GFF Editor, they would look like this: {Note to those that may not know: The plain text, such as "LinkedTo", goes in the FieldID: box; the bit in square [] brackets is the type of thing to add; anything in {} brackets is a comment. These should be replaced with unbracketed text in the final version. } LinkedTo [CExoString] = {waypoint/door(?) of choice} LinkedToFlags [bYTE] = {Mine is set to 2} LinkedToModule [CResRef] = {insert number here - e.g., 701kor} TransitionDestin [CExoLocString] = {You want to set STRREF: to "-1", "Language ID:" to whichever language your game is in - I'd guess "0", since this is English , and then press the return key and enter your string, to be displayed in the little box, e.g., "To The Valley of the Dark Lords" in the big box.) Hope that helps/is vaguely clear. Link to comment Share on other sites More sharing options...
Silveredge9 Posted December 16, 2007 Author Share Posted December 16, 2007 That would be because some doors automatically link to a new area, by a method I don't really understand. Looking at my transition triggers for Azgath's Tomb, "Faction" should be "Hostile_1", "Type" should be "Transition" and "Cursor" should be "1". Warping scripts should be attached to either OnTrapTriggered or ScriptOnEnter (or both to cover redundancies ). In the .GIT file, you need some extra fields, too. In a standard GFF Editor, they would look like this: {Note to those that may not know: The plain text, such as "LinkedTo", goes in the FieldID: box; the bit in square [] brackets is the type of thing to add; anything in {} brackets is a comment. These should be replaced with unbracketed text in the final version. } LinkedTo [CExoString] = {waypoint/door(?) of choice} LinkedToFlags [bYTE] = {Mine is set to 2} LinkedToModule [CResRef] = {insert number here - e.g., 701kor} TransitionDestin [CExoLocString] = {You want to set STRREF: to "-1", "Language ID:" to whichever language your game is in - I'd guess "0", since this is English , and then press the return key and enter your string, to be displayed in the little box, e.g., "To The Valley of the Dark Lords" in the big box.) Hope that helps/is vaguely clear. Yup, that's cleared everything up. I've managed to get it working in game. Thanks for the help. Link to comment Share on other sites More sharing options...
Revan_Pwn_Malak Posted December 16, 2007 Share Posted December 16, 2007 Are you working on a new mod Silver? Link to comment Share on other sites More sharing options...
Silveredge9 Posted December 16, 2007 Author Share Posted December 16, 2007 Maybe, maybe not. That's all I'm interested in saying on the subject at the moment. Besides, even if I WAS working on something big, you wouldn't hear anything about it for a long time yet. I'm not interested in creating expections or hype for anything that wouldn't be finished for a loooonnng time. It'd be just pointless. Link to comment Share on other sites More sharing options...
stoffe Posted December 16, 2007 Share Posted December 16, 2007 In the .GIT file, you need some extra fields, too. In a standard GFF Editor, they would look like this: If you are using Bioware's GFF Editor be careful doing this with GIT files that contains placeable cameras since that utility will corrupt the CameraList. For those situations you should use k-gff since it correctly handles the Rotation and Vector field types that KOTOR adds to the GFF format. Link to comment Share on other sites More sharing options...
Darth InSidious Posted December 16, 2007 Share Posted December 16, 2007 If you are using Bioware's GFF Editor be careful doing this with GIT files that contains placeable cameras since that utility will corrupt the CameraList. For those situations you should use k-gff since it correctly handles the Rotation and Vector field types that KOTOR adds to the GFF format. I think that provided you don't open the camera node they remain uncorrupted...I'm not sure why, 'though. @Silveredge: Glad to be able to help. Link to comment Share on other sites More sharing options...
Seamhainn Posted January 14, 2008 Share Posted January 14, 2008 Hello! Do I get it right, if I want to make a transition via an area I need to make an appropiate entry in the TriggerList of the .git file, and I have to make an associated .utt file? Is that all that has to be done? Thanks and take care Link to comment Share on other sites More sharing options...
Darth InSidious Posted January 14, 2008 Share Posted January 14, 2008 Yes, that's what you need to do. Link to comment Share on other sites More sharing options...
DarthJebus05 Posted February 14, 2008 Share Posted February 14, 2008 Sorry to bump this, but it reduces the topic spam. I got 2 problems: 1. How do I make a trigger for the door? 2. I can't type in the Language Box or the 'String' box to put my writing (i.e.To Valley Of Dark Lords) Link to comment Share on other sites More sharing options...
Seamhainn Posted February 14, 2008 Share Posted February 14, 2008 DJ, its explained here (I hope): http://lucasforums.com/showthread.php?t=185991&highlight=anatomy Link to comment Share on other sites More sharing options...
DarthJebus05 Posted February 14, 2008 Share Posted February 14, 2008 I must add that to favorites Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.