Difference between revisions of "Category talk:Editing Dialogue"
Category talk:Editing Dialogue (edit)
Revision as of 09:51, 28 January 2007
, 09:51, 28 January 2007no edit summary
imported>Blade9722 |
imported>Blade9722 |
||
Line 37: | Line 37: | ||
< | <tt> | ||
Created a new plugin: | #Created a new plugin: | ||
Create new NPC, TestNPC1 | #Create new NPC, TestNPC1 | ||
Create new quest, priority 65 | #Create new quest, priority 65 | ||
Create and add new topic, (TestTopic1) to quest, then add a line to be said with GetIsID set to the new NPC in the conditions | #Create and add new topic, (TestTopic1) to quest, then add a line to be said with GetIsID set to the new NPC in the conditions | ||
Add GREETINGS to the topics list and add new greeting line with GetIsID condition again set to new NPC. In the Add Topics box for the new greeting line I add TestTopic1. | #Add GREETINGS to the topics list and add new greeting line with GetIsID condition again set to new NPC. In the Add Topics box for the new greeting line I add TestTopic1. | ||
Place NPC into a cell (The Tiber Septim Hotel, not that it should make any difference). | #Place NPC into a cell (The Tiber Septim Hotel, not that it should make any difference). | ||
Saved Plugin as 'Add Topics test 1' | #Saved Plugin as 'Add Topics test 1' | ||
Made another plugin but with different lines of dialogue and 2's instead 1's. Saved | #Made another plugin but with different lines of dialogue and 2's instead 1's. | ||
#Saved | |||
</ | </tt> | ||
What happened is that, for a lucky chance, TestTopic1 and TestTopic2 where saved with the same FormID (I mean the "root" part of FormID, after the first two "count" bytes). | What happened is that, for a lucky chance, TestTopic1 and TestTopic2 where saved with the same FormID (I mean the "root" part of FormID, after the first two "count" bytes). | ||
Line 87: | Line 88: | ||
Now, if the load order is this: | Now, if the load order is this: | ||
Oblivion.esm | #Oblivion.esm | ||
Plugin1.esp | #Plugin1.esp | ||
Plugin2.esp | #Plugin2.esp | ||
Plugin3.esp | #Plugin3.esp | ||
The following FormIDs are assigned to the topics: | The following FormIDs are assigned to the topics: | ||
topic1: 01111111 | #topic1: 01111111 | ||
topic2: 02222222 | #topic2: 02222222 | ||
topic3: 03333333 | #topic3: 03333333 | ||
And this is OK. Unfortunately, if you check the reference of the addtopic field is: | And this is OK. Unfortunately, if you check the reference of the addtopic field is: | ||
for topic1: 03111111 | #for topic1: 03111111 | ||
for topic2: 03222222 | #for topic2: 03222222 | ||
for topic3: 03333333 | #for topic3: 03333333 | ||
This is making topic1 and topic2 unavailable. | This is making topic1 and topic2 unavailable. |