updating the UESP wiki

2 posts / 0 new
Last post
Rot's picture
Rot
Quest Developer
Joined:
2014-03-16 17:45
Last seen:
1 year 11 months ago

edit: Tamriel_Rebuilt: is now its own namespace in uesp so things in these posts may not be up to date

List of quest pages missing info (quest stubs) - category doesn't currently exist
List of all quests that don't have a page (the red ones)

Main new pages to keep track of for next release:
-

Template for quest pages
Red: replace
Green: optional, replace or remove
Pages with the {{Pre-Release}} tag will end up linked on this page.

 

{{Pre-Release}}
{{DEFAULTSORT:Quest Name}}{{Trail|Quests|Miscellaneous or Location or Mainland Faction or Location/Mainland Faction}}
{{Quest Header
|Giver=[[Tamriel Rebuilt:Questgiver Name|Questgiver Name]] at [[Tamriel Rebuilt:Cell Name|Cell Name]]
|Loc=[[Tamriel Rebuilt:City Name|City Name]]
|Reward=
|Rep=
|Prev=[[Tamriel Rebuilt:Previous Quest Title|Previous Quest Title]]
|Next=[[Tamriel Rebuilt:Next Quest Title|Next Quest Title]]
|ID=TR_m_QuestID
|image=
|imgdesc=
|description=Quest description in a few words.
}}

==Quick Walkthrough==
#
#

==Detailed Walkthrough==
{{stub|Quest}}

==Quest Stages==
{{MW Quest Stages Notes}}
{{Journal Entries
|Queststage||Journal entry.
|Queststage|restart|Journal entry that restarts quest.
|Queststage|fin|Last journal entry, finishes quest.
}}

   

Rot's picture
Rot
Quest Developer
Joined:
2014-03-16 17:45
Last seen:
1 year 11 months ago

reserved (double brackets will be hidden if first post is edited)

 
basic tes3cmd lines to generate journal entries from TR_plugin.esp

 

tes3cmd037.exe is v0.37
tes3cmd.exe is v0.40 alpha

these 2 modify lines are a hacky way to mark "finished" states for later without having to do it manually, backup first and don't use the modified files in the game!
tes3cmd037 modify --sub-match "Quest_Finished" --replace "/1/8008/" TR_plugin.ESP
tes3cmd037 modify --sub-match "Quest_Restart" --replace "/1/9009/" TR_plugin.ESP

tes3cmd dump --type INFO --match "Journal:" --format "|%disposition%|%Quest_Finished%%Quest_Restart%|%Response%" --no-quote TR_plugin.ESP > TR_Plugin_UESPQuestJournalStages.txt
note: that line will work in command line, but if it's in a windows .bat file double all the % signs:

 

tes3cmd dump --type INFO --match "Journal:" --format "|%%disposition%%|%%Quest_Finished%%%%Quest_Restart%%|%%Response%%" --no-quote TR_plugin.ESP > TR_Plugin_UESPQuestJournalStages.txt

remove first line (quest title) in the text output, search-and-replace |8008| with |fin| and |9009| with |restart|

 

to export entries from a specific quest in Mainland or a section file, use the same lines with the journal ID:

 

tes3cmd dump --type INFO --match "Journal:TR_m3_OE_Kneading" --format "|%disposition%|%Quest_Finished%%Quest_Restart%|%Response%" --no-quote TR_Mainland.esp > TR_Plugin_UESPQuestJournalStages.txt