TR_Data Updates Thread
Moderators: Haplo, Lead Developers
-
- Developer
- Posts: 835
- Joined: Mon Oct 27, 2008 11:18 pm
- Location: London
Are all 52 scripts completely different or do they use the same base script with only adjustments for different uses? Or is it just one script used 52 times?
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
-
- Developer
- Posts: 835
- Joined: Mon Oct 27, 2008 11:18 pm
- Location: London
They are all based on the same script, modified slightly for each book.
I've highlighted below the sections which are changed for each book:
I've highlighted below the sections which are changed for each book:
Code: Select all
Begin TR_BoTs_[***Name***]
short PCSkipEquip
short pickedup
if ( pickedup == 1 )
set pickedup to 0
if ( player->GetIntelligence >= [***Higher Value***] )
if ( player->GetSpell "[***Spell_ID***]" == 0 ) ;if you haven't already got the spell
Player->AddSpell "[***Spell_ID***]"
MessageBox "You have learned the spell [***Spell Name***] from this [***book/scroll/note***]."
PlaySound "skillraise"
endif
elseif ( player->GetIntelligence >= [***Lower Value***] )
MessageBox "There is a spell to be learned from this [***book/scroll/note***], but you cannot decipher it."
endif
endif
; for activating if the book from the inventory screen
if ( PCSkipEquip == 1 )
set PCSkipEquip to 0
set pickedup to 1
return
endif
; prevents the book being opened from the gameworld whilst in menu mode
if ( MenuMode == 1 )
return
endif
; for activating the book when it is placed in the game world
if ( OnActivate == 1 )
Activate
set pickedup to 1
endif
End
Thanks. I'm just being overly nit-picky. This and peterboy's playable heads will be in the next TR_Data.esm update coming probably today.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
-
- Developer
- Posts: 835
- Joined: Mon Oct 27, 2008 11:18 pm
- Location: London
Piss!
There is a very small bug in that script. If
- your intelligence is above the higher value and you read the book to learn the spell
- then have your intelligence drained back down so it is between the higher and lower values
- then read the book again
you will get the "There is a spell to be learned from this book, but you cannot decipher it." message.
I should have put the
if ( player->GetSpell "[***Spell_ID***]" == 0 )
condition one line earlier, which would have prevented this.
Damn. I should have noticed that, sorry.
There is a very small bug in that script. If
- your intelligence is above the higher value and you read the book to learn the spell
- then have your intelligence drained back down so it is between the higher and lower values
- then read the book again
you will get the "There is a spell to be learned from this book, but you cannot decipher it." message.
I should have put the
if ( player->GetSpell "[***Spell_ID***]" == 0 )
condition one line earlier, which would have prevented this.
Damn. I should have noticed that, sorry.
- Bloodthirsty Crustacean
- Developer Emeritus
- Posts: 3869
- Joined: Fri Feb 02, 2007 7:30 pm
- Location: Elsewhere
I don't think that really needs to be fixed right away, unless we're being perfectionists, or are worried we'll forget in the future.
(If that is the case, then I think I'd say that Peterboy's "blind" Dunmer heads should be made non-playable - another minor fix, but not necessarily worth it, unless we have excess time)
(If that is the case, then I think I'd say that Peterboy's "blind" Dunmer heads should be made non-playable - another minor fix, but not necessarily worth it, unless we have excess time)
a man builds a city
with Banks and Cathedrals
a man melts the sand so he
can see the world outside
"They destroyed Morrowind? Fiddlesticks! Now we're going to have to rebuild it again!"
with Banks and Cathedrals
a man melts the sand so he
can see the world outside
"They destroyed Morrowind? Fiddlesticks! Now we're going to have to rebuild it again!"
I think there are plenty of people who would love to play a blind character. If not, they won't have to choose that one.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
Sixth sense. Being a bad ass. Magicka. It's Tamriel, not Earth.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
-
- Developer
- Posts: 835
- Joined: Mon Oct 27, 2008 11:18 pm
- Location: London
It doesn't matter. Does it have to be dependent on TR_Data at all? The way I merge it is this:
1. I remove the dependency of TR_Data.esm from the loading list of the fix.esp
2. I turn TR_Data.esm into an .esp, so that I can edit it.
3. I load both TR_Data.esp and the fix.esp into the CS, with the fix.esp as the active .esp.
4. I select "merge plug-ins", then save.
But make it dependent upon one this time no matter what, just in case.
1. I remove the dependency of TR_Data.esm from the loading list of the fix.esp
2. I turn TR_Data.esm into an .esp, so that I can edit it.
3. I load both TR_Data.esp and the fix.esp into the CS, with the fix.esp as the active .esp.
4. I select "merge plug-ins", then save.
But make it dependent upon one this time no matter what, just in case.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
-
- Developer
- Posts: 835
- Joined: Mon Oct 27, 2008 11:18 pm
- Location: London
-
- Developer
- Posts: 835
- Joined: Mon Oct 27, 2008 11:18 pm
- Location: London
Ok, the fix is done and tested in game. It's dependent on the old TR_Data.
Are you aware that there are two books that teach the same spell? TR_bk_BreakInSetofArmor and TR_bk_FollyofSteel. It's probably intended, but I thought I'd point it out just in case.
Are you aware that there are two books that teach the same spell? TR_bk_BreakInSetofArmor and TR_bk_FollyofSteel. It's probably intended, but I thought I'd point it out just in case.
- Attachments
-
- TR_Data_BookFix_2.ESP
- New version of book fix
- (78.54 KiB) Downloaded 61 times
Thanks, MMMowSkwoz.
Could you find which ones so I could check for/remove them for sure?Aeven wrote:I believe there are still several vanilla ground textures in the BSA, because some files I am sure I have replacers for are being displayed in a vanilla state.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
Here's what I'd do:
1. Extract TR_Data.bsa in a temporary directory.
2. Delete all the textures with a name starting with TX_.
3. Run TESFiles on TR_Data.esm.
4. Copy the textures with a name starting with TX_ that TESFiles picked up back into the temporary directory. Those are the ones that are exclusive to TR, and not contained in Morrowind.bsa, Tribunal.bsa or Bloodmoon.bsa.
5. BSAPack the temporary directory back into a BSA file.
It's unfortunate that we do have some textures in TX_ something, or it would be easier to clean the archive.
Note that you can't just rely on TESFiles because there are some resources that it won't find, such as landtextures or meshes that are used by one of the Map files rather than directly by TR_Data.esm.
1. Extract TR_Data.bsa in a temporary directory.
2. Delete all the textures with a name starting with TX_.
3. Run TESFiles on TR_Data.esm.
4. Copy the textures with a name starting with TX_ that TESFiles picked up back into the temporary directory. Those are the ones that are exclusive to TR, and not contained in Morrowind.bsa, Tribunal.bsa or Bloodmoon.bsa.
5. BSAPack the temporary directory back into a BSA file.
It's unfortunate that we do have some textures in TX_ something, or it would be easier to clean the archive.
Note that you can't just rely on TESFiles because there are some resources that it won't find, such as landtextures or meshes that are used by one of the Map files rather than directly by TR_Data.esm.
Gez, where can I find TESFile? Google shows up nothing.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
Perhaps I should have put an S on the end of TESFile. Thanks
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
TR_Data.7z updated. Should have no more MW/Trib/BM textures in it. If it does let me know, somebody. Enjoy.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
I fixed the vertex shading on the Necrom temple. I did this by hand, so it may differ slightly on different sides (not symmetric to the pixel) but should look nice and a hell of a lot better than Big Black Sploth (TM)
- Attachments
-
- tr_ex_nec_temple.rar
- Fixed
- (127.41 KiB) Downloaded 93 times
What meshes use cloned textures? Are you sure they aren't just the same file name with a different extension? (.tga -> .dds and vice versa)
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
Things like domes in Necrom sets. This may be due to UV mapping, but I don't know.
I do know some Necrom doors (that fit into round door jambs) use clones of the default Velothi door.
EDIT: I had a look at the NIF files: tr_ex_nec_h_01 uses a texture named TR_tx_block_adobe_white.tga (or dds, but doesn't matter) and several others use the vanilla (which is often replaced) tx_block_adobe_white. I suggest either making them all use the TR clone (gives consistency, even if someone releases a Necrom texture replacer) or making them all use the vanilla texture.
I do know some Necrom doors (that fit into round door jambs) use clones of the default Velothi door.
EDIT: I had a look at the NIF files: tr_ex_nec_h_01 uses a texture named TR_tx_block_adobe_white.tga (or dds, but doesn't matter) and several others use the vanilla (which is often replaced) tx_block_adobe_white. I suggest either making them all use the TR clone (gives consistency, even if someone releases a Necrom texture replacer) or making them all use the vanilla texture.
There is an error in TR_DATA leveld lists. TR arrows, bolts and throwing weapons have the checkbox "generate for each item in the list" checked, unlike vanilla objects of the same kind. That is - you want an NPC to have a quantity of 50 arrows of some random kind, so you give it 50 of TR_random_arrows (or so, do not remember exactly the ID, but it is quite obvious which one is it) having it end up with random quantities of random arrows which give 50 when summed up. This should be fixed in next TR_Data, by anybody responsible for this file. It can be done in 5 minutes.
THEO
How, exactly?Theo wrote:There is an error in TR_DATA leveld lists. TR arrows, bolts and throwing weapons have the checkbox "generate for each item in the list" checked, unlike vanilla objects of the same kind. That is - you want an NPC to have a quantity of 50 arrows of some random kind, so you give it 50 of TR_random_arrows (or so, do not remember exactly the ID, but it is quite obvious which one is it) having it end up with random quantities of random arrows which give 50 when summed up. This should be fixed in next TR_Data, by anybody responsible for this file. It can be done in 5 minutes.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
- Bloodthirsty Crustacean
- Developer Emeritus
- Posts: 3869
- Joined: Fri Feb 02, 2007 7:30 pm
- Location: Elsewhere
- Nomadic1
- Developer Emeritus
- Posts: 3338
- Joined: Sat May 15, 2004 7:34 am
- Location: Adelaide, Australia
Some other things which you may or may not want to change in TR data:
Misc items:
- TR_furn_com_r_bkend and TR_furn_de_r_bkend are pricey at 20. 5-10 is more on the mark IMO
- Ditto TR_misc_potion_01, TR_misc_potion_03 and TR_misc_potion_04 at 10, 30 and 30 (just cheaper than standard potions). 03 and 04 also aren't that "Fine". TR_misc_potion_02 is a fancy bottle but is also overpriced IMO
- The stoneware bowls and tr_misc_stn_pot_02 aren't worth anything.
Containers:
- Add variants of the furn_de_RM containers with clothes in them (chest, closet and drawers). Saves interior modders creating these each per claim whenever they are used.
Clothing:
- TR_common_skirt_redoran_red and TR_common_skirt_redoran_yellow are each worth 300 gold, almost three times as much as an unenchanted exsquisite skirt
- TR_common_skirt_Necrom is worth 600
Ingredients:
- TR_Ingred_Aquamarine and TR_Ingred_Dae_Aquamarine are worth 400 gold, even though it is like a poor man's emerald
- TR_Ingred_Dae_Gold_Ore and TR_Ingred_Dae_Jet don't cost anything
- TR_Ingred_Gold_Ore weighs 5, less than the lighter Iron Ore
Misc items:
- TR_furn_com_r_bkend and TR_furn_de_r_bkend are pricey at 20. 5-10 is more on the mark IMO
- Ditto TR_misc_potion_01, TR_misc_potion_03 and TR_misc_potion_04 at 10, 30 and 30 (just cheaper than standard potions). 03 and 04 also aren't that "Fine". TR_misc_potion_02 is a fancy bottle but is also overpriced IMO
- The stoneware bowls and tr_misc_stn_pot_02 aren't worth anything.
Containers:
- Add variants of the furn_de_RM containers with clothes in them (chest, closet and drawers). Saves interior modders creating these each per claim whenever they are used.
Clothing:
- TR_common_skirt_redoran_red and TR_common_skirt_redoran_yellow are each worth 300 gold, almost three times as much as an unenchanted exsquisite skirt
- TR_common_skirt_Necrom is worth 600
Ingredients:
- TR_Ingred_Aquamarine and TR_Ingred_Dae_Aquamarine are worth 400 gold, even though it is like a poor man's emerald
- TR_Ingred_Dae_Gold_Ore and TR_Ingred_Dae_Jet don't cost anything
- TR_Ingred_Gold_Ore weighs 5, less than the lighter Iron Ore
<insert witty signature here. i might spend time trying to come up with something, but its not like anybody reads these anyway>
The two available boxes are:Bloodthirsty Crustacean wrote:Untick the 'generate for each item in the list' box for the various projectile levelled lists.
Calculate from all levels <= PC's level
Calculate for each item in count
I'm going to assume you both mean the second box.
Also, thanks Nomadic
EDIT 5PM EST - TR Data has been updated and includes these fixes among others, including an updated Temple and Tower mesh for Necrom which now have proper vertex shading. The fish and cliffracer meat compilation errors should be fixed as well.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
-
- Developer
- Posts: 328
- Joined: Tue Aug 26, 2008 5:32 am
- Location: Victoria, Australia
I can confirm that issue, Necrom temple makes CS go crash.
However, curiously, if a CS is already placed (as in Swiftoak's Necrom), it can load it without problem, and you can move it, and place more with Ctrl-C, Ctrl-V; and even place more through drag'n'drop from the Object Window.
It's only if none were loaded along with the cell that it crashes. Very odd.
However, curiously, if a CS is already placed (as in Swiftoak's Necrom), it can load it without problem, and you can move it, and place more with Ctrl-C, Ctrl-V; and even place more through drag'n'drop from the Object Window.
It's only if none were loaded along with the cell that it crashes. Very odd.
Hmm, that is odd, but I'm positive it must be something to do with the vertex shading method Aeven used. The tower also crashes the CS.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
- Bloodthirsty Crustacean
- Developer Emeritus
- Posts: 3869
- Joined: Fri Feb 02, 2007 7:30 pm
- Location: Elsewhere
A quick fix-pack for TR Data.
This fixes some problems with Indoril guards (and their helm levelled lists), High Ordinators (lack of scripts), one Redoran guard (claimed female when not), and evens out the Guar levelled lists a bit more.
Also, next time a new Data goes up, could Petiboy's skirt/robe pack (in the 'Hair/headstyling thread') be included as well? (If it's not been already)
This fixes some problems with Indoril guards (and their helm levelled lists), High Ordinators (lack of scripts), one Redoran guard (claimed female when not), and evens out the Guar levelled lists a bit more.
Also, next time a new Data goes up, could Petiboy's skirt/robe pack (in the 'Hair/headstyling thread') be included as well? (If it's not been already)
- Attachments
-
- TR_Data_GuardsAndGuars.esp
- (7.53 KiB) Downloaded 63 times
a man builds a city
with Banks and Cathedrals
a man melts the sand so he
can see the world outside
"They destroyed Morrowind? Fiddlesticks! Now we're going to have to rebuild it again!"
with Banks and Cathedrals
a man melts the sand so he
can see the world outside
"They destroyed Morrowind? Fiddlesticks! Now we're going to have to rebuild it again!"
Also, some cleaning needs to be done, using esplint to check what should be removed.
Junk cells are apparently added back whenever you merge plugins together. (They can also appear in other conditions.)D:\Jeux\Morrowind\Data Files\TR_Data.esm: GETSND JUNKCEL DUP-REC DUP-DIA MOD-DIA
GetSoundPlaying possibly used to detect events:
SCPT(TR_Po_WaterSoundV4)
Junk Cells: Master Flags Plugin Flags
Bitter Coast Region (-12, 1) 0x02 0x02
Bitter Coast Region (-12, 2) 0x02 0x02
Bitter Coast Region (-12, 3) 0x02 0x02
Bitter Coast Region (-13, 1) 0x02 0x02
Bitter Coast Region (-13, 2) 0x02 0x02
Bitter Coast Region (-13, 3) 0x02 0x02
Bitter Coast Region (-13, 4) 0x02 0x02
Bitter Coast Region (-14, 2) 0x02 0x02
Bitter Coast Region (-14, 4) 0x02 0x02
Bitter Coast Region (-14, 5) 0x02 0x02
West Gash Region (-15, 7) 0x02 0x02
West Gash Region (-16, 7) 0x02 0x02
West Gash Region (-16, 8) 0x02 0x02
Wilderness (-15, -8) 0x02 0x02
Wilderness (-19, 14) 0x02 0x02
Wilderness (-19, 15) 0x02 0x02
Wilderness (-20, 15) 0x02 0x02
Wilderness (-28, 24) 0x02 0x02
Wilderness (-29, 23) 0x02 0x02
DUP-DIA: indicates the exact INFO dialog with the same ID, text and filter
exists in one of the masters of this plugin. This may be a
problem, or maybe not. Sometimes duplicate dialog is intentional
in order for dialog sorting to be correct. It's only a mistake
if it really was unintentional.
MOD-DIA: indicates that an INFO dialog with the same ID exists in the
master, but this plugin has modified the text or the filter. This
is quite common when a plugin intentionally modifies a master's
dialog.
DUP-DIA: ID=1246427467180227919
DIA=________________ONAM____dhaunayne aundae_SNAM____Vo\v\Hit_vHF003.mp3_NAME____Rarrrgh!
DUP-DIA: ID=1852077831147829296
DIA=________________ONAM____eloe_SNAM____Vo\v\Hit_vIF006.mp3_NAME____Rarrrgh!
DUP-DIA: ID=2364929234239618901
DIA=________________ONAM____clasomo_SNAM____Vo\v\Hit_vIM006.mp3_NAME____Rarrrgh!
DUP-DIA: ID=2689112858236774173
DIA=________________FNAM____Census and Excise_NAME____We will have nothing to do with a notorious outlaw. Until you have cleared your name, or paid your debt to society, don't talk to us.SCVR____01433INTV________BNAMo___;Redoran, Imperial Legion; Temple; Morag Tong; Census and Excise; PCCrime >=1000; __ModDisposition -30__Goodbye
DUP-DIA: ID=3013512161158727588
DIA=________________ONAM____fammana_SNAM____Vo\v\Hit_vIF006.mp3_NAME____Rarrrgh!
DUP-DIA: ID=22664319912626028136
DIA=________________ONAM____areas_SNAM____Vo\v\Hit_vNM006.mp3_NAME____Rarrrgh!
MOD-DIA: ID=23213323002688228604
NEW-DIA=________________CNAM____Enchanter Service_NAMEi___There's always some real experts in certain trades. Go seek them out, and who knows what you might learn.SCVR____1CsX0NoLoreINTV________SCVR____22sX4Random100INTV____Z___SCVR____33sX3TR_MapINTV________
ORIG-DIA=________________CNAM____Enchanter Service_NAME____If you want to talk to an enchanter about enchanting, try Galar Rothan at the Telvanni Council House. He's not a stiff shirt like a lot of the Telvanni wizards, and he knows his stuff.SCVR____07XX0galar rothanINTV________SCVR____1CsX0noloreINTV________SCVR____22sX4Random100INTV____Z___
- Bloodthirsty Crustacean
- Developer Emeritus
- Posts: 3869
- Joined: Fri Feb 02, 2007 7:30 pm
- Location: Elsewhere
To clarify for the sake of Hap, DUP-DIAs are 'dirty' dialogue entries that have been marked as changed, but not for any reason. Just clean these out.
The MOD-DIA thing is where a vanilla entry is accidentally overwritten by a mod entry. This is bad. This is the kind of thing that caused the TG error. Most time, it's pretty harmless, but it's not a good idea. It generally happens when dialogue is being 'batch copied' from vanilla. To fix, right-click Copy the effected dialogue entry to create a duplicate; then mark somehow and clean out the 'original' (this will be the lower of the pair).
The MOD-DIA thing is where a vanilla entry is accidentally overwritten by a mod entry. This is bad. This is the kind of thing that caused the TG error. Most time, it's pretty harmless, but it's not a good idea. It generally happens when dialogue is being 'batch copied' from vanilla. To fix, right-click Copy the effected dialogue entry to create a duplicate; then mark somehow and clean out the 'original' (this will be the lower of the pair).
a man builds a city
with Banks and Cathedrals
a man melts the sand so he
can see the world outside
"They destroyed Morrowind? Fiddlesticks! Now we're going to have to rebuild it again!"
with Banks and Cathedrals
a man melts the sand so he
can see the world outside
"They destroyed Morrowind? Fiddlesticks! Now we're going to have to rebuild it again!"
I usually delete it in the CS, save, open the "Details" window, sort by deletion markers to find it quickly, mark it as ignored, load (so it's not loaded and therefore not ignored anymore), then re-save.Bloodthirsty Crustacean wrote:then mark somehow and clean out the 'original' (this will be the lower of the pair).
Do I need to use esplint to remove that stuff? Also, thanks.
Forum Administrator & Data Files Manager
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
[06/19/2012 04:15AM] +Cat table stabbing is apparently a really popular sport in morrowind
[August 29, 2014 04:05PM] <+Katze> I am writing an IRC bot! :O
[August 29, 2014 04:25PM] *** Katze has quit IRC: Z-Lined
-
- Developer Emeritus
- Posts: 2029
- Joined: Wed Feb 02, 2005 12:20 am
- Location: Kah-nah-duh
- Contact:
Just a reminder, somebody needs to fix that annoying select-box thingy issue with the Necrom Temple. This needs to be done ASAP because I can't even detail the temple with statics because I can never select any of them.
Sorry if I sound whiny here :/
Sorry if I sound whiny here :/
"Idleness and lack of occupation tend - nay are dragged - towards evil."
-Hippocrates
-Hippocrates