Difference between revisions of "User:Thingy Person"

The Beyond Skyrim Wiki — Hosted by UESP
Jump to: navigation, search
(Animations)
(Initial setup)
 
(83 intermediate revisions by the same user not shown)
Line 1: Line 1:
A Technical History of Beyond Skyrim (WIP)
+
Welcome to the Arcane Mystic assignment for quest and dialogue implementation, where you will implement the small settlement of Marlinsvik, situated on Skyrim's northwestern coast. Although the scope of the settlement has been kept small, it is still a beefy exercise, and by the time you're done, you will have familiarized yourself with a sizeable amount of Creation Kit elements that will be useful for a project and for your own mods.
  
 +
The writing document folder for Marlinsvik can be found here:
  
This article outlines some technical aspects of Beyond Skyrim in order to preserve a correct history and debunk some myths.
+
We also provide an esp file containing level design for the village, although the houses are of course still unpopulated. In-game, run <code>tmm 1</code> in the console to instantly discover all map markers, including Marlinsvik, so you can fast travel there. Look northwest of Solitude, near [https://en.uesp.net/wiki/Skyrim:Broken_Oar_Grotto Broken Oar Grotto].
  
 +
[https://docs.google.com/document/d/1JAt7PKfdoaE8i6MA5hMMVEO23IrJA6mWbWb5a5LONgY/ This document], originating from the Beyond Skyrim: Cyrodiil project, lists many of the required steps, although some of its contents go beyond the scope of this exercise. [https://www.youtube.com/watch?v=czslmcUZBcY This AU lecture] gives a general overview of the work all of this entails. For the most part, though, you can just rely on the instructions below.
  
=== Heightmap ===
+
As before, use a prefix of three or four letters (such as "AUM", for Arcane University Mystic) that you will use in all EditorIDs of objects that you create. Make sure to also set this prefix in the "Papyrus" tab of the Creation Kit Preferences window. This will automatically add "<prefix>_" to the name of any fragment script that it creates. For manually created scripts, make sure to include your prefix manually when you choose the name.
  
Beyond Skyrim grew out of a [https://web.archive.org/web/20200213041000/https://forums.bethsoft.com/topic/1288452-other-province-mods/ forum thread] some weeks after Skyrim's release, urging beginning province mods to avoid some of the mistakes seen in the modding scene for Oblivion. One such alleged mistake was that province mod projects did not collaborate, using custom heightmaps that did not fit together, rendering the mods incompatible. When [https://www.nexusmods.com/oblivion/mods/27235 Tamriel Heightmaps], a common heightmap resource for Oblivion, eventually did appear, it was too late and too unattractive for existing mod teams to consider using it.
+
The exercise can be divided into four parts, taking you across all of the essential steps in implementing a settlement. Feel free to ask for feedback partway through if you are running into issues or are unsure that you're doing things correctly.
  
Although there is visible land beyond Skyrim's borders, it is only LOD, i.e. low-resolution versions of the land that is visible from a distance but cannot be interacted with; furthermore, it cuts out roughly half of the way into the neighboring provinces and is not accurate to the scale of Tamriel implied by Skyrim's landmass. And thus, the [https://web.archive.org/web/20200216210718/http://forums.bethsoft.com/topic/1343021-wip-all-tamriel-heightmap/ All-Tamriel Heightmap] project was started to create lore-friendly and correctly scaled heightmaps for the other provinces that are compatible with Skyrim and with each other. The heightmaps were modeled in [https://www.world-machine.com/ World Machine] and imported into Skyrim with [http://www.oceanlightwave.com/morrowind/TESAnnwyn.html TESAnnwyn]. Eventually these heightmaps would become the collective heightmap for the Beyond Skyrim heightmap, contained in BSTamriel.esm, a master which each project depended on alongside BSAssets.esm.
+
== Initial setup ==
  
The original plan was that the heightmaps would be placed into the vanilla worldspace, meaning one could travel out of Skyrim with no load screen. Several issues changed this plan.
+
* Creation of the NPC records
 +
** It is best to start with creating the Actor base records of the five NPCs (including the dog). Set them as "Unique", write their full name in "Name" and, if they have a surname, write only their first name in "Short name". EditorID should be of the format "<prefix>FirstnameLastname".
 +
** Thankfully, you do not need to waste time recreating their faces, because the writer has supplied .npc files (created using the [https://ck.uesp.net/wiki/SavePCFace spf] console command) for them in the "Facedata" folder that you can import. Set the actor to any of the playable races so that the "Character Gen Parts" tab becomes visible. Under this tab, click the "Import" button and select the .npc file. This will take care of setting the correct race, sex, weight and face data.
 +
*** If the .npc file was created using modded hairs, noses etc., then these almost always won't import correctly due to differences between the in-game load order and the load order in the CK. You can open the .npc file in a plain text editor like Notepad and check to see if there are any FormIDs not beginning in 00, and then put those on the NPC manually after import. In this case, Marlinsvik only depends on vanilla, so this isn't an issue.
 +
*** Wiske, being a child and thus not a playable race, does not have an .npc file, so you will have to improvise based on the written description.
 +
*** Gaubelin is described as an Elder, which is technically a separate race designed to look older than the playable races. The .npc file is for a Breton instead; after importing, you can try setting his race to an Elder, which preserves most elements, but arguably looks worse. You can decide how to go about this. Note that the Elder race does not distinguish between Nords and Bretons and doesn't confer racial bonuses.
 +
** You will, however, need to configure the NPC's stats and inventory. Unique settlement NPCs tend to have static level, so don't use the "PC Level Mult" flag. A level between 5 and 10 seems appropriate for ordinary people; compare with NPCs from a similarly sized settlement like Shor's Stone for example. Combat-focused NPCs can be a bit more. You can use the "Auto calc stats" flag which will compute individual skills based on the level and their class. Set this class to something suitable rather than the default "EncDremoraMelee".
 +
** For their inventory, pick an Outfit that seems suitable and ideally fits the written description. Sometimes, you may have to create a new Outfit, but this shouldn't be necessary here. It is generally good to add a "LootCitizenPockets..." leveled list to the inventory so that they have some randomized objects on them.
 +
** In the AI Data tab, make sure they at least help allies (i.e. close family) and possibly friends and allies. Give them a plausible [https://ck.uesp.net/wiki/AI_Data_Tab#Confidence Confidence]; NPCs that aren't combat-ready should try to run away more often. Confidence also determines how difficult it is to pass an Intimidate speech check on the NPC, but there are none in this assignment. Also set their combat style to something appropriate.
 +
** For Gaubelin, don't forget to give him spells. You have some leeway to be creative here.
 +
** Once all NPCs have been created, set [https://ck.uesp.net/wiki/Relationship Relationships] between them. Each pairing of NPCs that know each other should get a relationship if they are at least friends, or rivals.
 +
*** Pick an association type that best fits their relationship. For example, Jerome is not Wiske's father, but stands in for one, so arguably you could choose ParentChild. Family and lovers should get the "Ally" rank, others "Friend".
 +
*** The EditorID format is <prefix><Parentname><Childname>, where Parent is the "senior" NPC and Child the "junior" NPC. For association types that are essentially equal, the ordering is not important.
 +
* Creation of Location records
 +
** A [https://ck.uesp.net/wiki/Location Location] is an abstract piece of data that holds information which could potentially be used in radiant quests. Create a "<prefix>MarlinsvikLocation" location and give it suitable keywords describing what kind of location it is (you can look at the Shor's Stone location for reference). Set the Haafingar location as its parent.
 +
** Create Locations for each of the houses with the format "<prefix>Marlinsvik<Housename>". Set the Marlinsvik location from the previous step as the parent. Since Gaubelin's shack has no interior, it doesn't need a Location.
 +
* Creation of Faction records
 +
** Create a "<prefix>TownMarlinsvikFaction" faction and also a faction for each house with the format "<prefix>Marlinsvik<Housename>Faction". Again, Gaubelin doesn't need one.
 +
** Apply the "Town" faction to each NPC and also apply the faction of the house that they reside in.
 +
** Apply the relevant crime faction (i.e. CrimeFactionHaafingar) to every NPC and select it in the "Assigned crime faction" dropdown.
 +
** Certain NPCs will need even more factions to enable all of their required functions, but we will do those in the next step.
 +
* Creation of keys and lock lists
 +
** Jerome and Caechabhu's houses will need to be locked at night or when they are out and about. Create a [https://ck.uesp.net/wiki/Key Key] for each house with the format "<prefix>Marlinsvik<Housename>Key". You can duplicate a vanilla object so you don't have to manually specify a model and pickup sounds. Add an instance of the key to the inventory of the NPCs that live there... except for the dog.
 +
** Next, create a [https://ck.uesp.net/wiki/FormList FormList] for each house with the format "<prefix>Marlinsvik<Housename>LockList". Fill this list with the Actor base records of the relevant NPCs.
 +
* Apply it all to the cells
 +
** Let's start with the exterior. Every cell that contains even a small part of the settlement should be marked as such. In the cell window, right click and "Edit" the cell. Set the Location to the <prefix>MarlinsvikLocation that you created. Also change the editorID to a convention like "<prefix>Marlinsvik01" if it isn't named that already. You can rename a cell by single clicking the name in the cell window.
 +
** Load up a house interior. Set the Location to that house's location. Then in the Interior Data tab, set "Owner Faction" to the house faction you created, and "Lock List" to the respective lock list.
 +
** Edit the door. Give it a Lock that is tied to the key you created; the lock level can be Novice for commoners such as these. Also set the owner faction to the house faction. It is crucial for the inside reference of the door to be owned in this way for trespassing to work properly.
 +
** Place the NPCs near the beds where they sleep. Set the faction of the bed to that NPC so that nobody else will sleep there. Edit the NPC's ref and name it "<prefix><NPCname>REF" (this makes it show up in-game with the "help" console command, making it easy to teleport to the NPC if needed). Then, under the "Persistence location" tab, set the dropdown to the <prefix>MarlinsvikLocation. This controls when the NPC is persistent, i.e. having its pathing calculated by the game even if not in the currently loaded area. Choosing this as the persist location means the NPC is processed if any part of Marlinsvik's exterior or interior is currently loaded. In your .esp, all references are persistent at all times anyway, but when an .esp gets merged into an .esm file like in a project, that is no longer a case. If NPCs for some reason aren't coming out of their houses even though they should, this is often why. Also, the "Unique actor" fill method in quest aliases has been found to fail sometimes if the NPC ref doesn't have a persist location.
 +
** In the exterior, set the ownership of any somewhat valuable item to the <prefix>TownMarlinsvikFaction so that it can't be taken without it being considered stealing. You can use the [https://ck.uesp.net/wiki/Batch_Assignment Batch Assignment] tool to save some time.
 +
*** For the interiors, the cell's owning faction takes care of this automatically. Since Gaubelin's shack has no interior, you will have to assign his posessions to him manually.
  
* A [https://web.archive.org/web/20200217020241/http://forums.bethsoft.com/topic/1343021-wip-all-tamriel-heightmap/page-3#entry20612873 problem with LOD], caused by difficulties with creating a custom lodsettings/Tamriel.lod file and having it be loaded by the game, jeopardized the prospects of being able to display LOD beyond the limits specified for the vanilla worldspace. Since there were no such difficulties involved with a lodsettings file for a custom worldspace, it was eventually decided to put all the custom provinces into one custom worldspace, separate from the vanilla one.
+
== Dialogue and scenes ==
* [https://web.archive.org/web/20200216062509/http://forums.bethsoft.com/topic/1352988-fixing-the-64x64-cell-havok-bug-for-when-you-just-want-a-bigger-world/ The first "worldspace bug"], where collision issues occur for actors that are too far east and west of the world origin. Actors - such as NPCs, enemies, and a horse the player is riding - will appear to sink into and pop out of the ground repeatedly. The problem occurs in cells beyond 64 and -64 along the X axis; it does not affect cells far to the north or the south that are within this east-west limit. Because of this, one [https://web.archive.org/web/20200216133221/http://forums.bethsoft.com/topic/1256368-wip-high-rock/page-3 proposed solution] was to divide Tamriel into three world spaces, one of which would have included Morrowind and Black Marsh.
+
* You will have a single start game enabled quest called <prefix>DialogueMarlinsvik that holds all the regular, non-quest related dialogue for this settlement.
** Then an [https://web.archive.org/web/20200217094317/http://forums.bethsoft.com/topic/1352988-fixing-the-64x64-cell-havok-bug-for-when-you-just-want-a-bigger-world/page-3?&&p=20419923 ini tweak] was found that works around the issue, along with a conjectured technical explanation. With this tweak, the plan for a unified heightmap was back on the table.
+
** Greetings and Farewells go under the Misc tab. Create a topic of subtype "Hello"; this will contain all the greetings for 'all' the NPCs in a single stack of Infos. Same with the Farewells, which go in the subtybe "Goodbye".
* The second "worldspace bug". If the player is beyond 64 or -64 cells, on ''either'' axis this time, and is facing away from the world origin, then all gameplay interactions break. Harvestables cannot be picked, doors cannot be opened, attacks will not hit enemies, and so on. This bug was discovered late because it took until someone placed an interactible object outside the safe limit - specifically, a level designer from the Northpoint project placing a flower. There is no known workaround for this one, and as such this bug definitively killed the idea of a large Tamriel worldspace.
+
*** In Skyrim, unique NPC greetings usually just get a reset timer, typically of 0.5 hours. This means they are heard in sequence until they have all had a turn and the NPC drops down to generic lines ("Yes?", "Need something?" and so on) until half an in-game hour has passed and the lines reset. That said, writers often do not write greetings and farewells with a specific order in mind, so giving them the Random flag is an option. If you do this, be sure to set Random End on the NPC's last line in the stack, or generic lines will be interspersed with the unqiue ones.
 +
*** Some greetings depend on the completion of quests that you haven't implemented yet. It's up to you how to go about this; for example, you could just make a note of which lines you need to go back to later on to add conditions. In a project, sometimes such a quest will not be available for implementation until much later, and there will have to be some organization in place to keep track of these dependencies.
 +
*** The reason these quest-dependent greetings aren't contained in the quests themselves is that we want to be able to Stop() those quests after they are completed, but that will make all the dialogue inside of them unavailable, whereas these greetings are supposed to be heard after the quest.
 +
** Implement standard dialogue in the Player Dialogue tab (or Dialogue Views if you prefer). There is no standard EditorID naming scheme used consistently in the base game, but try to stick something sensible like "<prefix><Questname><NPCname><branchname><Topicindex>".
 +
*** Refer to the list of [https://ck.uesp.net/wiki/Condition_Functions Condition Functions] for any non-standard implementation notes that the writer has asked for.
 +
*** Sadly, there is no button or condition in the CK for "unlocking" dialogue branches, so this will have to be scripted. If a dialogue line locks (or unlocks) another dialogue branch, make a quest stage for it, and add a note saying e.g. "Locks PARENTS in Wiske's dialogue" as either a fragment script or a journal entry (since this quest won't show up in the journal anyway). Then have the line set that stage, and for the dialogue that gets locked (or unlocked), use the [https://ck.uesp.net/wiki/GetStageDone GetStageDone] condition. This means it'll work even if the stages are not set in a numerically ascending order.
 +
*** Occasionally, a writer may specify that dialogue should be locked or unlocked when it is not actually needed to script quest stages to do so. You always have the capacity to decide what the most elegant way to implement a given piece of dialogue is.
 +
** Gaubelin has an "Initial dialogue" section that is a little bit different. The conversation begins with him, not with a player dialogue option. This needs to be implemented as a [https://ck.uesp.net/wiki/Dialogue_Branch#Blocking_Branches Blocking Branch]. A vanilla example of this is [https://en.uesp.net/wiki/Skyrim:Idolaf_Battle-Born Idolaf Battle-Born]'s dialogue.
 +
*** The "Alias=Player" text will work even without making a quest alias for the player; see [https://ck.uesp.net/wiki/Text_Replacement Text Replacement].
 +
*** One of Gaubelin's greetings is specified to be valid only while the initial dialogue tree has not been gone through. However, by default, the first line from the blocking branch will be used as the greeting, even if the player is just walking past without initiating dialogue, leaving the custom greeting with no opportunity to be heard. This is why you have to put the [https://ck.uesp.net/wiki/IsInDialogueWithPlayer IsInDialogueWithPlayer] condition on the blocking branch dialogue.
 +
** Caechabhu is a merchant, so refer to the [https://ck.uesp.net/wiki/Creating_a_Merchant Creating a Merchant] tutorial. Her dialogue doc specifies a "What have you got for sale?" topic, but you do not need to add this, since the "JobMerchantFaction" takes care of it. Since Caechabhu is a fletcher, you additionally need to give her the "JobFletcherFaction" so she has the fletcher-specific dialogue lines. Also use the fletcher buy/sell list on her services faction.
 +
*** Similarly, Gaubelin's "I'd like training in Alchemy" topic is also handled entirely by factions, but don't give him the factions just yet, since his services are a quest reward.
 +
*** Projects will have their own generic dialogue lines and will thus have custom "Job" factions that you will need to use.
 +
** Caechabhu's dialogue contains a speech check; see the [https://ck.uesp.net/wiki/Tutorial:_Dialogue_Speech_Checks Dialogue Speech Checks] tutorial.
 +
*** It is definitely important to use the "SpeechAverage" global variable in the condition rather than a numeric value. This is because the global variables are manipulated by certain Speech perks that the player can learn, whereas using a numeric value means these perks have no effect.
 +
*** For completeness, the success option should also have an OR condition "GetEquipped: TGAmuletofArticulationList", run on the player, in case they have the [https://en.uesp.net/wiki/Skyrim:Amulet_of_Articulation Amulet of Articulation] equipped. Yes, manually adding this condition to every single persuade check is how Bethesda coded the effect of this amulet.
 +
** For top-level branches, set the [https://ck.uesp.net/wiki/Topic Topic priorities] so that they appear in the same order as they are in the writing doc.
 +
** Remember that Start Game Enabled quests need a [[Arcane University:Seq Guide|SEQ file]] to actually start, or you can just quicksave and quickload as a stopgap solution.
 +
* [https://ck.uesp.net/wiki/Category:Scenes Scenes] are done differently (see also [https://ck.uesp.net/wiki/Bethesda_Tutorial_Scenes Bethesda Tutorial Scenes]). Here, there are only three, although usually there are more. [[File:Implementation mystic establisher example.png|400px|thumb|right|Markers for Brina Merilis and Skald the Elder's establishing scene in Dawnstar]]
 +
** The first scene is a '''major establisher'''. This is a scene that starts the game enabled and is manually choreographed. The NPCs will take up positions (determined by packages pointing to XMarkerHeadings that you need to place) and wait day and night for the player to come by and hear their dialogue, giving the first impression of the themes of the settlement. There will usually be an initial scene phase before dialogue that only finishes when the player enters a trigger volume around the markers, so that dialogue doesn't start until the player is reasonably within earshot.
 +
*** In dialogue actions, set a headtrack target pointing to whoever the NPC is talking to. It is also often a good idea to put empty dialogue actions for the other NPCs to make them headtrack whoever is talking.
 +
*** For Nabuco's bark, you can use a vanilla Shared Info (using the "Share response data from info" dropdown) that will give you a standard dog bark with no visible subtitle. Such infos can be found in the quest CreatureDialogueDog.
 +
*** You should put this scene in its own quest, and stop the quest when the scene is done (the "Stop quest on end" flag on the scene can be used for this). The reason for this is that the quest aliases needed for the scene make the NPCs persistent as long as the quest is running. Although, again, all references in an esp file will be persistent at all times.
 +
*** You MUST have [https://www.nexusmods.com/skyrimspecialedition/mods/15109 Fuz Ro D'oh] installed and running, or unvoiced scenes will stall, and you will see the NPCs standing around in a deadlock forever.
 +
** The other two scenes are '''random conversations'''. We will let the game engine trigger these for us whenever two NPCs get within talking range of each other. The trigger mechanism is the [https://ck.uesp.net/wiki/Category:Story_Manager Story Manager] (see also the [https://ck.uesp.net/wiki/Bethesda_Tutorial_Story_Manager Bethesda Tutorial Story Manager]). Each of these scenes will be in its own quest. The steps for setting it up are in [https://ck.uesp.net/wiki/Bethesda_Tutorial_Conversations this tutorial] which you may have seen before.
 +
*** One of the EditorID naming conventions in use is something like "<prefix>DialogueMarlinsvik<NPC1><NPC2>Scene01" for the quest and "<prefix>DialogueMarlinsvik<NPC1><NPC2>01Scene" for the scene. This slight variation is needed because no two objects can have the same EditorID.
 +
*** In the [https://ck.uesp.net/wiki/Actor_Dialogue_Event Actor Dialogue] story manager event node, there is a whole network of branch nodes that group scene quests by hold and then by settlement. If you were to follow this scheme, you would make a new node for Marlinsvik under HaafingarHoldScenes. However, we recommend that you keep your modded content separate from the base game, so make a top-level node for your assignment (and mark it as "Shares event" to play nice). A project will typically have a top-level node like this, and maintain their own structure down from that node.
 +
*** The second random conversation is a '''3x3 scene'''. This is an in-house invention where each dialogue phase will feature one random line out of three possibilities. Implementing this is easy: in a given dialogue action, have the dialogue topic contain three TopicInfos that are flagged "Random".
  
=== Master Limit ===
+
If you have done everything correctly up to this point, the major establishing scene will play out and then the NPCs will lock themselves inside their homes. You can use the "unlock" console command on the door to get inside quicker, but the NPCs will be yelling at you for trespassing, making it difficult to test the dialogue. Using the console command "toggledetection" (or "tdetect") will make them more cooperative. You won't be able to test all of the scenes until their daily schedules have been made, which is the next step.
  
This section details how the merging process evolved, and its impact on which master files a project could have as its dependencies.
+
== AI Packages ==
  
Before the Creation Kit's release, many small mods were already being made, mostly using a utility called [https://en.uesp.net/wiki/Skyrim_Mod:SkyEdit SkyEdit], which was developed by reverse engineering part of the plugin data format used by the engine, and did not allow for any level design. (Contrary to popular belief, [https://www.nexusmods.com/skyrim/mods/9782 Moonpath to Elsweyr] is not one of these mods, as it was made using the Creation Kit. [https://www.reddit.com/r/skyrimmods/comments/7nbzxw/comment/dwyu2xw/ See here from the author himself]. The first and perhaps only mod that managed to implement new, albeit very crude, level design before the Creation Kit is called [https://www.curseforge.com/skyrim/mods/wounded-knee-gulch Wounded Knee Gulch].)
+
Now that you have first-hand experience with the NPCs and their dialogue (although it would be good to take a cursory look at the quests too), it's time to think about their daily schedules. These are implemented in the form of [https://ck.uesp.net/wiki/Category:Packages AI Packages] (see also [https://ck.uesp.net/wiki/Package_(Form) this page] for an explanation of all the settings in a package). Since NPCs' standard schedules aren't quest-related, these packages belong in the [https://ck.uesp.net/wiki/AI_Packages_Tab AI Packages Tab] of the relevant NPC.
  
For the Beyond Skyrim heightmap's development, not even the Creation Kit's release was enough to satisfy all requirements; a worldspace plugin produced by TESAnnwyn cannot be converted to an .esm with the Creation Kit, so the esm flag would have to be set using unofficial tools. In addition, plugin cleaning and merging, essential functionalities in modding including Beyond Skyrim, are tricky to do with the Creation Kit, if not poorly understood at the time.
+
The aim is to create a feeling of hustle and bustle in the settlement and make it come alive, while properly conveying each NPC's background through what the player sees them do, and making sure that NPCs will meet each other if they have a possible scene together. You will have noticed a schedule specified in each NPC's document. These are more like guidelines or suggestions than something to be implemented literally; as the person working directly in the game engine, you will have a better intuition of what works well in-game. One in-game hour is a lot shorter than how it may seem on paper; this is especially true if an NPC needs to travel a long distance between activities. But you will also have a direct view of the environment and everything in it that you can work with, as well as quick access to all the settlements in vanilla Skyrim that you can compare with. So this section entails some genuine creative freedom.
  
For these functionalities, another utility called [https://ck.uesp.net/w/index.php?title=Category:TESVSnip TESVSnip] was widely used. However, TESVSnip had a huge problem, in that it used an incorrect compression library and irreversibly damaged many plugins it edited (see e.g. [https://web.archive.org/web/20160303184916/http://www.darkcreations.org/forums/topic/1799-skyrim-handling-compressed-records-do-not-use-tesvsnip this forum thread]). When this came to light, an initiative was mounted to obtain the source code for [https://en.uesp.net/wiki/Oblivion_Mod:TES4Edit TES4Edit] and update it for Skyrim, resulting in [https://ck.uesp.net/wiki/Category:TES5Edit TES5Edit], which finally allowed these operations to be done safely. Another utility called [http://web.archive.org/web/20130525141538/http://www.darkcreations.org/forums/files/file/388-tesvgecko/ TESVGecko] had been in development with many of the same goals, but it was put on hold.
+
* Try to use pre-existing, reusable packages when it is convenient to do so. These all have EditorIDs beginning with "default". They often point to the NPC's editor location as their destination; the editor location is wherever you placed the NPC's reference in the world, namely inside their house, which is what makes these packages useful.
 +
** It's generally a good idea to stick a "defaultSandboxHomeowner" or a similar package at the bottom. This will take care of any "sandboxes at home" sequences in between other activities.
 +
** Other than that, it's typical to organize the package stack so that earlier packages in the day are at the bottom, with later packages up top. You should be able to find "defaultSleep" and "defaultEat" packages that roughly fit the timespans you want. If a package has "16x4" at the end of its EditorID, that means it begins at 16 hours (in military time) and lasts for 4 in-game hours, so from 4 p.m. to 8 p.m.
 +
** Some default packages will have the "unlock doors" flag set, others not. If a package unlocks doors, that means the player is able to come inside and visit without trespassing. Eat and home sandbox packages tend to unlock doors whereas sleep packages don't; if a default package bucks this trend, it is often indicated as such in the EditorID. You generally want the player to be able to enter a house legally so that the level designers' work can be enjoyed by all.
 +
* For most other types of packages, you will need to point to a custom location and therefore you will have to make custom packages. A convention for this is something like "<prefix><Settlement><NPC><Activity>10x2" where the 10x2 has the meaning explained previously. Make sure the times in the EditorID match up with how you configure the package itself, or you may be quite confused later on.
 +
** For the target of the package, you often want the NPC to be working in a general area rather than targeting a specific object. In such cases, you'll want to place an Xmarker and give the reference an EditorID like "<prefix><Settlement><NPC><Activity>Marker" and use that in the package, rather than take some nearby object.
 +
** The radius around the target is measured in [https://ck.uesp.net/wiki/Unit units]. If you're having a hard time visualizing a certain radius, look in the 3D Date tab of the marker reference and fiddle with the "Test radius" parameter. It'll show this radius in the render window.
 +
** A package with the template SandboxMultiLocation can be very useful as a broad solution. This way, you can have an NPC automatically rotate between several locations for a good chunk of their day, such as inside and outside of their home.
 +
** Be sure to disable "Allow eating" if applicable, otherwise the NPC will, in fact, be seen eating or drinking every chance they get.
 +
* You will have to place additional AI markers to aid NPCs in their schedules. Level designers typically only concern themselves with things that are visible, leaving you to place [https://ck.uesp.net/wiki/Idle_Markers idle markers], Xmarkers, and occasionally furniture objects without a visible model. Make sure to set the ownership of idle markers and furniture to a specific NPC or faction if you don't want them to be used by everyone.
 +
** For a demonstration of available idle animations, see [https://www.youtube.com/watch?v=ws6EaXQMBgs this video]. Most of these idles have corresponding idle markers that you can use. Of course, many animations are not suited for ordinary NPC activities.
 +
** Jerome's potato patch will need a good handful of FarmingIdleMarkers for him to randomly switch between. As implied earlier, his farming package should point to an Xmarker located in the middle of the patch.
 +
** Making an NPC carry wood takes a bit of setting up, but adds a very nice touch. The package will need the CarryItem template and point to two WoodPiles, usually one near the chopping block and the other one near the main wood stockpile. Then you should also put the CarryItemScript on the NPC and configure its properties to spawn firewood if the NPC gets interrupted mid-carry, and add fragment scripts to the package in the "Begin/End/Change" tab to activate this behavior. See [https://en.uesp.net/wiki/Skyrim:Faendal Faendal] from Riverwood as an example NPC who carries wood as part of his daily schedule.
 +
** For Caechabhu, you probably don't want her tanning leather all the time, so you can improvise by, for example, giving her a WallLeanMarker (an invisible furniture) to make her lean against her house. Or you can have her spend part of her day in a [https://ck.uesp.net/wiki/Patrol_(Procedure) Patrol] around the village and the nearby wilderness (chain a bunch of PatrolIdleMarkers together via "linked reference", make a package with the Patrol template, and point it to a marker in the chain), evoking the impression that she's hunting.
 +
** For children like Wiske, it can be difficult coming up with things for them to do, since they can't perform working activities such as farming. If multiple children are around, you can make them run around along a patrol path to simulate them playing tag. Otherwise, having a child stand around doing nothing can often do the job. Maybe place an InvisibleChairMarker to use if there is a suitably-sized rock or crate in the village.
 +
** Gaubelin will get some mileage out of his alchemy set, but also experiment with putting markers like the StudyIdleMarker around his shack.
 +
** Inside a house, placing a SweepIdleMarker or two can work well. If there is a cooking set, the NPC will use that too.
 +
* For testing,
 +
** If an NPC isn't doing what they're supposed to, the cause is often navmesh-related. The navmesh door links might be broken, in which case you need to finalize the navmesh. Or there isn't any navmesh extending to the destinations of some packages. Of course, in this assignment, only flawless navmesh is provided to you.
 +
** Otherwise, check if there isn't some package higher up on an NPC's package stack that you forgot to set time restrictions on.
 +
** Consider using [https://www.nexusmods.com/skyrimspecialedition/mods/19250 More Informative Console], which displays an NPC's current AI package.
 +
** While you're at it, you can check to see if the random conversations are working. The game is very proactive about these; if two NPCs get anywhere near each other and there is a random conversation for them, then the scene is practically guaranteed to fire. If it doesn't, then something is wrong. Again, you must have [https://www.nexusmods.com/skyrimspecialedition/mods/15109 Fuz Ro D'oh] running.
  
For a long time, however, TES5Edit still did not support editing or merging one kind of data: the VMAD subrecord, which contains information on scripts attached to objects, and their properties. This meant that plugins implementing quest content could not be merged into the master file using TES5Edit, which is a limitation that the Cyrodiil project ran into. At the time, only the Creation Kit's own [https://ck.uesp.net/wiki/Version_control Version Control] system (which had been sufficiently documented by this point) allowed for merging script content, so the Cyrodiil project switched to using this for merging.
+
== Quests ==
  
However, using Version Control introduced two new issues:
+
Lastly, the assignment includes two small quests. These aren't any longer than the Bendu Olo and Arcane Scribe quests you've already seen, but they include some twists that are useful to familiarize yourself with.  
* Version control has a hard-coded limit of '''two master files'''. This means that the Creation Kit will refuse to merge plugins into master files that have more than two .esm files as dependencies. This was likely implemented to avoid a situation where a Bethesda employee accidentally loads two DLCs at the same time, which would make one dependent on the other; the two allowed masters would thus be Skyrim.esm and Update.esm.
 
** Since this issue more or less coincided with the discovery of the second worldspace bug discussed earlier, it was decided to cut up Tamriel and store the worldspaces into the separate project esm files. This meant that BSTamriel.esm could be left out, and if Update.esm is similarly left out, then the only remaining dependencies are Skyrim.esm and BSAssets.esm, thus staying within the master limit. It is not known what tools were used to do this cutting up, but the process has been redeveloped more recently and is documented [[Arcane University:World space synchronization|here]].
 
** A knock-on effect was that projects occupying the same worldspace henceforth also needed to have the same master file, as a worldspace cannot be introduced from two masters at the same time. Thus, the BSCyrodiil.esm and BSElsweyr.esm master files, which both used the BSHeartland worldspace contained in BSTamriel.esm, merged into BSHeartland.esm. Similarly, the High Rock and Hammerfell projects merged their masters into BSIliacBay.esm.
 
** Another knock-on effect relates to using DLC assets in Beyond Skyrim projects. Since a DLC master file could not be used directly, any desired object forms had to be re-implemented into BSAssets.esm. BSAssets would only include the forms and not the models and textures themselves, so the DLCs were still requirements for running the mod, just not by having the DLC master file as a dependency.
 
** In order to avoid a DLC item and its re-implementation showing up as two different kinds of items in the player's inventory, Beyond Skyrim: Bruma ships with a DLC patch .esp that edits instances of re-implemented DLC objects and switches them back to being instances of the originals. Any future Beyond Skyrim release would have needed such a plugin that the end user would then have to add to their load order.
 
** Many years later, [https://www.nexusmods.com/skyrimspecialedition/mods/20061 SSE Creation Kit Fixes] implemented a patch that removes the two master limit, and since April 2022, Beyond Skyrim has had DLCs as masters, removing the need for re-implementing DLC records and greatly simplifying this aspect of the project.
 
* The Creation Kit automatically renames fragments scripts (such as [https://ck.uesp.net/wiki/Topic_Info_Fragments Topic Info Fragments]) on merge. Fragment scripts are a special kind of script which is named automatically by the CK, incorporating the FormID of the object it is attached to. Since the FormID changes on merge, the CK will rename the fragment script accordingly. It will do this for the record data in the .esm file, but doesn't take care of renaming the loose .psc script source file, changing its header, and recompiling it. This means that the scripting is broken on merge, as the game will look for a renamed script file that doesn't exist, as the script file still has its old name.
 
** The functionality for handling the external files can be restored by installing Perforce (now called [https://www.perforce.com/products/helix-core Perforce Helix Core]), a professional version control software, and hooking it up with the Creation Kit. During the game's development, Bethesda used Perforce for version control, including checking out forms so that only one employee could edit any given form at a time, avoiding conflicts. In Beyond Skyrim, perforce is only used for its specific functionality of renaming and recompiling fragment script files. The process of setting this up is complicated and is documented [https://ck.uesp.net/wiki/Version_control here]. [https://web.archive.org/web/20130211112525/http://www.darkcreations.org/forums/topic/3545-the-merging-process-collaboration/ See also this forum thread from when this was discovered].
 
** Later on, TES5Edit came to support the VMAD subrecord, making it a viable merging tool for script content. It does not rename the scripts in either the .esm or in the loose script files, meaning the scripts will function, but be "misnamed" with regards to the FormID. This is only a problem in the very unlikely but theoretically possible case where a Topic Info Fragment script from a newer plugin ends up being created with the same name as an existing one from a previous plugin, causing a nasty conflict.
 
** [https://github.com/matortheeternal/merge-plugins Merge Plugins] also supported automatic rename and recompile of fragment scripts and was used by one of the projects for merging (see [[Arcane University:Masterfile Merging with MergePlugins|Masterfile Merging with MergePlugins]]) but this functionality was removed in a later version.
 
  
=== Legendary Edition and Special Edition ===
+
In Skyrim, EditorIDs for misc tasks have a hodgepodge of contrasting conventions, usually containing the words "Freeform" or "Favor". Here, we recommend you use "<prefix>MarlinsvikFF01" and "<prefix>MarlinsvikFF02" for the two quests.
  
When Skyrim Special Edition (abbreviated as SE) released in 2016, it was initially treated as another platform to release on, but development continued on the old version of Skyrim, known as Legendary Edition (LE). This is because converting a mod from LE to SE was a known process, while converting from SE to LE was not, so developing on LE meant that releases could be done on both platforms.
+
* Find Wiske's Doll is a so-called '''radiant quest''', since the dungeon is randomly selected. Refer to the [https://ck.uesp.net/wiki/Bethesda_Tutorial_Radiant_Quests Bethesda Tutorial Radiant Quests] for a refresher.
 +
** Dungeons usually have a "LocSet" keyword for the tileset it uses and a "LocType" keyword for who or what resides there. You can use the [https://ck.uesp.net/wiki/GetInCurrentLoc GetInCurrentLoc] condition function to restrict the search to Haafingar. Ironically, there will only be one eligible location, namely [https://en.uesp.net/wiki/Skyrim:Steepfall_Burrow Steepfall Burrow].
 +
** You could script this quest to start during Wiske's dialogue, or you could have it start game enabled, like these kinds of quests usually are in vanilla. That means the player can come across Skanulike in a chest before ever visiting Marlinsvik, hence the dialogue option taking this possibility into account. Vanilla is less ceremonious about this.
 +
*** Another possibility of starting the quest in use in some Beyond Skyrim projects is with the [https://ck.uesp.net/wiki/Change_Location_Event Change Location] story manager event node, distributing the load so that the quests in a location get started when the player travels there rather than all at game start.
 +
** In the Scribe quest, you presumably created a new base object for the ring so that it has a unique name. Let's try and avoid that overhead this time. You can have the alias create a regular child's doll (see [https://en.uesp.net/wiki/Skyrim:Miscellaneous_Items#Children.27s_ItemsHF UESP] for a list of Skyrim objects if you need it), make a new [https://ck.uesp.net/wiki/Message Message] where the title is the desired display name of the item, and then select that message in the "Display name" dropdown on the alias.
 +
** If a line is formatted in light blue, that means it is repeated from earlier and mustn't be implemented as a separate line, or the voice actor will be prompted to record the same line twice. Sometimes you can manage it with invisible continues, but in other cases, you will have to make a Shared Info.
 +
** Don't know how to award a skill level in Speech? Take a peek at a vanilla example if you can remember one, or search the [https://ck.uesp.net/wiki/List_of_Papyrus_Functions List of Papyrus Functions].
 +
* Gather Flowers for Gaubelin is trickier, since you need to implement a live updating counter based on the player acquiring items, and several kinds of items need to be treated as though they are interchangeable.
 +
** It's always handy if there is a vanilla example so you can copy their homework. In this case, that would be [https://en.m.uesp.net/wiki/Skyrim:Grin_and_Bear_It Grin and Bear It]. The UESP is often a very helpful encyclopedia for vanilla content; its list of [https://en.m.uesp.net/wiki/Skyrim:Ingredients ingredients] will also be of use here.
 +
** You can pretty much base your implementation off of the vanilla quest. The main trick to making this quest work in an elegant way is that you need to provide some central bit of code - a function to count all flowers in the player's inventory and update objectives if needed - and have it be accessible from multiple places, like the stage fragment script (for when the quest is accepted) and a script attached to a player alias (for when flowers are gained or lost). The best place to put this function is in a new, manually created script that is attached to the quest, sitting next to the fragment script. Let's say this script is named AUMMarlinsvikFF02QuestScript.
 +
*** To run this function from somewhere else, you'll need to have the quest as an object, not of type Quest, but of type AUMMarlinsvikFF02QuestScript. In a stage fragment, you can have the CK create such an object for you using the "kMyQuest" dropdown. You can then do: <code>kMyQuest.CountItems()</code> for example.
 +
*** In an alias script (as well as a dialogue fragment script for example), you can do it like this: <code>(GetOwningQuest() as AUMMarlinsvikFF02QuestScript).CountItems()</code>
 +
** Don't forget to add an [https://ck.uesp.net/wiki/AddInventoryEventFilter_-_ObjectReference event filter] to the player alias script for the four kinds of mountain flowers, or to add the global variable for your counter to the "text replacement globals" list in the Quest Data tab!
 +
** In both quests, run Stop() to clean up after you no longer need anything in the quest. You should also provide a fail stage if the NPC dies (there are default alias scripts for this), which fails all objectives and also stops the quest. This fail stage is less relevant in Wiske's quest, unless you want to account for the player using a child killing mod.
  
* Note: Legendary Edition was actually a re-release of Skyrim from 2013 with all the DLCs included, but it is nowadays used to refer to that version of Skyrim as a whole. There is no technical difference between having bought Skyrim and its DLCs separately, or having bought Legendary Edition.
+
And that's it! You have now gained essential experience in implementing a village. What's more, implementing a city is essentially the same task, just on a much larger scale. As before, zip up your esp and scripts and share it with us.
 
 
Over time, some projects came to have so much content that they ran into memory limitations inherent in LE. While LE's game executable is 32-bit, SE's executable is 64-bit, allowing it to use vastly more memory. Even Beyond Skyrim: Bruma requires the use of SKSE plugins on LE in order to expand the memory limit somewhat and allow the mod to run. The SE version does not require this. Eventually, these projects switched their development to SE, forgoing the possibility of making releases available for LE, while other projects continued on LE.
 
 
 
With some projects on LE and others on SE, this meant that two different versions of BSAssets had to be maintained in parallel. This was a source of much complexity and regularly led to problems where, for example, some assets were not in both repositories, or one of them contained only outdated versions; or a tree mesh was developed for SE, would be back-converted to LE (which is an imperfect process) and then forward-converted to SE again instead of just using the original version, while its tree animation data would also somehow not make it into the .esm.
 
 
 
Eventually, by January 2022, all projects switched their development to SE, even those that had no pressing need to do so. Reasons included a shrinking playerbase on LE; a dearth of new devs who own LE, which had become difficult and extremely expensive to purchase; being able to use SSE CK Fixes, which was developed to address the regressions found in SE's version of the creation kit, but had become significantly better than even the original LE creation kit; and the prospect of being able to deprecate the LE version of BSAssets, as well as developers not having to have LE and SE installed in parallel anymore if they worked on different projects. This step greatly simplified the maintenance of the project.
 
 
 
=== Stripped Master ===
 
 
 
The Creation Kit has a limit on how many object references (i.e. in-game placed objects) it can load simultaneously, known as the refr handle limit. Unlike the game itself, the Creation Kit needs every single reference from every loaded file loaded and indexed all at once. At some point, the combined reference counts from BSHeartland.esm as well as Skyrim.esm reached this limit. This meant that level designers would place objects in the CK but these would end up not being saved.
 
 
 
To work around this, developers used a stripped version of Skyrim.esm, where almost the entirety of the vanilla worldspace was removed, thereby bringing the number of loaded references back down.
 
 
 
In 2020, SSE CK Fixes implemented a patch that raises the refr handle limit to double its usual number, meaning the stripped Skyrim.esm was no longer needed. To date, it has not been necessary to go back to the stripped master.
 
 
 
=== SKSE ===
 
 
 
[https://skse.silverlock.org/ SKSE] is a resource that expands the capabilities of Skyrim, not only by adding new Papyrus functions that can be used in scripting, but also allowing the loading of .dll files that can apply various engine-level changes that aren't possible with conventional modding.
 
 
 
Beyond Skyrim projects are free to use SKSE, both for development and as an end-user requirement. This section will describe examples of both.
 
 
 
Examples where SKSE is or has been used as an end-user requirement:
 
* Beyond Skryim: Bruma for LE needs the user to run SKSE for its memory patch, increasing the memory limit from 2GB to 4GB. Otherwise, the player will face an infinite loading screen upon entering Cyrodiil. The SE version does not need SKSE.
 
** When it became apparent that SKSE was required to run the mod, developers started using SKSE papyrus script functions for convenience. These instances all ended up being refactored in order to remove the SKSE dependency, in order to be able to release Bruma on Xbox. This is because SKSE cannot be run on Xbox, and it is not strictly needed, since the moddable version of Skryim on Xbox is SE. To date, the Cyrodiil project still avoids end-user dependencies on SKSE.
 
* Atmora has required SKSE in the past for some purposes that have since been made obsolete.
 
** Some kinds of music tracks are pulled from lists which are hard-coded, and as such, multiple mods adding such music are incompatible without a patch. This incompatibility is also true for Beyond Skyrim projects. Atmora had its own way of dealing with this for certain music types, such as combat music, which are specified by the [https://ck.uesp.net/wiki/DefaultObjectManager_Script Default Object Manager]; using SKSE, the Default Object Manager can be modified, so that it can be made to point to Atmora combat music when the player travels to Atmora, and be reset to its default when the player travels back. However, this does not work for map marker discovery jingles which are hardcoded directly in the game executable and not in the Default Object Manager.
 
*** The problem of incompatible music has since been solved by basing the edits in BSAssets (see [[Arcane University:Compatible Implementation of Hard Coded Music Types|Compatible Implementation of Hard Coded Music Types]]), and this for all kinds of music, making the SKSE solution obsolete. Since Atmora initially did not use BSAssets, this solution only became possible when it adopted the use of BSAssets in late 2021.
 
** Atmora also anticipated on some features which would be developed later on and which were thought to require SKSE, like spears or Frostfall compatibility, but these also become obsolete due to changing plans or alternative solutions.
 
* Beyond Skyrim might incorporate changes that trigger extra functionality if SKSE used, but cause no issues otherwise. For example, there is integration with [https://www.nexusmods.com/skyrimspecialedition/mods/81409 Constructible Object Custom Keyword System] and [https://www.nexusmods.com/skyrimspecialedition/mods/56123 CoMAP].
 
 
 
Examples where SKSE is used for development:
 
* [https://www.nexusmods.com/skyrimspecialedition/mods/15109 Fuz Ro d'Oh], an SKSE plugin, is indispensable for testing quests. Without it, dialogue which has not yet been voice acted will either go by too fast or too slowly with no way to skip it, and scenes will even stall forever, rending quests unplayable. Since voice lines are presumably voiced for the release, Fuz Ro d'Oh will not be an end-user requirement (and silent voice files can still be used for any exceptions).
 
* [https://www.nexusmods.com/skyrimspecialedition/mods/28210 Console Command Extender] has a Beta Comments functionality that allows a user to point at an object in-game, write a comment about it and export it to a text file. Members who do QA are asked to learn to use this tool.
 
* [https://www.nexusmods.com/skyrimspecialedition/mods/19250 More Informative Console] gives more information about in-game objects, such as model file path and current AI package.
 
* [https://github.com/Jonahex/SkyrimIngameEditor Skyrim Ingame Editor] allows editing various kinds of data in-game to see the result immediately and save it to a plugin, most notably weathers, which otherwise requires a tedious cycle of adjusting some numbers in the CK or TES5Edit and launching the game to see the result.
 
 
 
=== Animations ===
 
 
 
Custom animations have long been possible in Skyrim modding, but under various compromises and degrees of complexity. The greatest source of problems was ''behaviors''; a behavior graph is a file that contains information on which bones (that is, movable parts) a creature has, how they relate to each other, what animations the creature can have, sometimes even the sounds a creature makes, and much more. The file format for behaviors is proprietary and part of the Havok middleware, and there are no official tools available for Skyrim to work with them, meaning it has fallen on the community to try and reverse engineer this very complex kind of data. While editing behaviors has been possible for many years to some extent, creating entirely new ones generally hasn't been until recently.
 
 
 
To add new animations for humanoids, such as new idle animations for the player, mods have generally been able to edit the behavior graph to add these animations and allow for some way to trigger them in-game. If only one mod in a player's load order edits a given behavior, then everything is fine; if multiple mods do this, then the player can run [https://www.nexusmods.com/skyrim/mods/11811 FNIS] or [https://www.nexusmods.com/skyrimspecialedition/mods/60033 Nemesis] to automatically generate patched behavior files for compatibility. If Beyond Skyrim were to have custom animations, then FNIS or Nemesis would therefore not be an external dependency unless the player has other mods installed that edit behaviors (in which case they'd likely already be using such tools), and assuming the Beyond Skyrim projects have a way to ensure compatibility between each other.
 
 
 
For a new creature with entirely custom animations, modders have generally edited the behavior of an existing creature and added all the animations of their custom creature to it, while ensuring that the pre-existing creature only uses its own animations and the modded creature uses the custom ones. Conflicts between mods can likewise be patched with FNIS or Nemesis. This approach would be perfectly possible for Beyond Skyrim, but it seems the projects were unwilling to take on the jank of stitching new creatures onto existing ones, and preferred waiting for a solution that involved proper new behaviors.
 
 
 
Note that the problem of custom animations has exceedingly little to do with SKSE, and the ability to have custom animations does not depend on choosing to require SKSE or not. [https://www.nexusmods.com/skyrimspecialedition/mods/33746 Dynamic Animation Replacer], which released in 2020, uses SKSE to inject animations in-game depending on user-defined conditions, but it functions in a very different way than behaviors do, so a more native solution was still preferred.
 
 
 
Finally, in 2022, bugfixes to [https://github.com/aerisarn/ck-cmd/ ck-cmd] and a personal fork of [https://github.com/Jonahex/Skyrim-Behavior-Editor-/ Skyrim Behavior Editor] allowed the creation of fully custom behaviors, documented in [[Arcane University:Implementation of Custom Animations|Implementation of Custom Animations]]. Besides allowing one to add new creatures natively, it supports implementing new idle animations as new idle markers which level designers are accustomed to work with, including with new AnimObjects (items which NPCs hold in their hands during an animation) which are otherwise hard-coded. Compatibility between Beyond Skyrim projects is ensured by hosting all custom and modified behaviors in BSAssets, as well as the text files animationdatasinglefile.txt and animationsetdatasinglefile.txt which need to contain information on every animation used in the game. Compatibility with external mods can still be ensured on the user's side by running FNIS or Nemesis.
 

Latest revision as of 04:31, 30 November 2024

Welcome to the Arcane Mystic assignment for quest and dialogue implementation, where you will implement the small settlement of Marlinsvik, situated on Skyrim's northwestern coast. Although the scope of the settlement has been kept small, it is still a beefy exercise, and by the time you're done, you will have familiarized yourself with a sizeable amount of Creation Kit elements that will be useful for a project and for your own mods.

The writing document folder for Marlinsvik can be found here:

We also provide an esp file containing level design for the village, although the houses are of course still unpopulated. In-game, run tmm 1 in the console to instantly discover all map markers, including Marlinsvik, so you can fast travel there. Look northwest of Solitude, near Broken Oar Grotto.

This document, originating from the Beyond Skyrim: Cyrodiil project, lists many of the required steps, although some of its contents go beyond the scope of this exercise. This AU lecture gives a general overview of the work all of this entails. For the most part, though, you can just rely on the instructions below.

As before, use a prefix of three or four letters (such as "AUM", for Arcane University Mystic) that you will use in all EditorIDs of objects that you create. Make sure to also set this prefix in the "Papyrus" tab of the Creation Kit Preferences window. This will automatically add "<prefix>_" to the name of any fragment script that it creates. For manually created scripts, make sure to include your prefix manually when you choose the name.

The exercise can be divided into four parts, taking you across all of the essential steps in implementing a settlement. Feel free to ask for feedback partway through if you are running into issues or are unsure that you're doing things correctly.

Initial setup[edit]

  • Creation of the NPC records
    • It is best to start with creating the Actor base records of the five NPCs (including the dog). Set them as "Unique", write their full name in "Name" and, if they have a surname, write only their first name in "Short name". EditorID should be of the format "<prefix>FirstnameLastname".
    • Thankfully, you do not need to waste time recreating their faces, because the writer has supplied .npc files (created using the spf console command) for them in the "Facedata" folder that you can import. Set the actor to any of the playable races so that the "Character Gen Parts" tab becomes visible. Under this tab, click the "Import" button and select the .npc file. This will take care of setting the correct race, sex, weight and face data.
      • If the .npc file was created using modded hairs, noses etc., then these almost always won't import correctly due to differences between the in-game load order and the load order in the CK. You can open the .npc file in a plain text editor like Notepad and check to see if there are any FormIDs not beginning in 00, and then put those on the NPC manually after import. In this case, Marlinsvik only depends on vanilla, so this isn't an issue.
      • Wiske, being a child and thus not a playable race, does not have an .npc file, so you will have to improvise based on the written description.
      • Gaubelin is described as an Elder, which is technically a separate race designed to look older than the playable races. The .npc file is for a Breton instead; after importing, you can try setting his race to an Elder, which preserves most elements, but arguably looks worse. You can decide how to go about this. Note that the Elder race does not distinguish between Nords and Bretons and doesn't confer racial bonuses.
    • You will, however, need to configure the NPC's stats and inventory. Unique settlement NPCs tend to have static level, so don't use the "PC Level Mult" flag. A level between 5 and 10 seems appropriate for ordinary people; compare with NPCs from a similarly sized settlement like Shor's Stone for example. Combat-focused NPCs can be a bit more. You can use the "Auto calc stats" flag which will compute individual skills based on the level and their class. Set this class to something suitable rather than the default "EncDremoraMelee".
    • For their inventory, pick an Outfit that seems suitable and ideally fits the written description. Sometimes, you may have to create a new Outfit, but this shouldn't be necessary here. It is generally good to add a "LootCitizenPockets..." leveled list to the inventory so that they have some randomized objects on them.
    • In the AI Data tab, make sure they at least help allies (i.e. close family) and possibly friends and allies. Give them a plausible Confidence; NPCs that aren't combat-ready should try to run away more often. Confidence also determines how difficult it is to pass an Intimidate speech check on the NPC, but there are none in this assignment. Also set their combat style to something appropriate.
    • For Gaubelin, don't forget to give him spells. You have some leeway to be creative here.
    • Once all NPCs have been created, set Relationships between them. Each pairing of NPCs that know each other should get a relationship if they are at least friends, or rivals.
      • Pick an association type that best fits their relationship. For example, Jerome is not Wiske's father, but stands in for one, so arguably you could choose ParentChild. Family and lovers should get the "Ally" rank, others "Friend".
      • The EditorID format is <prefix><Parentname><Childname>, where Parent is the "senior" NPC and Child the "junior" NPC. For association types that are essentially equal, the ordering is not important.
  • Creation of Location records
    • A Location is an abstract piece of data that holds information which could potentially be used in radiant quests. Create a "<prefix>MarlinsvikLocation" location and give it suitable keywords describing what kind of location it is (you can look at the Shor's Stone location for reference). Set the Haafingar location as its parent.
    • Create Locations for each of the houses with the format "<prefix>Marlinsvik<Housename>". Set the Marlinsvik location from the previous step as the parent. Since Gaubelin's shack has no interior, it doesn't need a Location.
  • Creation of Faction records
    • Create a "<prefix>TownMarlinsvikFaction" faction and also a faction for each house with the format "<prefix>Marlinsvik<Housename>Faction". Again, Gaubelin doesn't need one.
    • Apply the "Town" faction to each NPC and also apply the faction of the house that they reside in.
    • Apply the relevant crime faction (i.e. CrimeFactionHaafingar) to every NPC and select it in the "Assigned crime faction" dropdown.
    • Certain NPCs will need even more factions to enable all of their required functions, but we will do those in the next step.
  • Creation of keys and lock lists
    • Jerome and Caechabhu's houses will need to be locked at night or when they are out and about. Create a Key for each house with the format "<prefix>Marlinsvik<Housename>Key". You can duplicate a vanilla object so you don't have to manually specify a model and pickup sounds. Add an instance of the key to the inventory of the NPCs that live there... except for the dog.
    • Next, create a FormList for each house with the format "<prefix>Marlinsvik<Housename>LockList". Fill this list with the Actor base records of the relevant NPCs.
  • Apply it all to the cells
    • Let's start with the exterior. Every cell that contains even a small part of the settlement should be marked as such. In the cell window, right click and "Edit" the cell. Set the Location to the <prefix>MarlinsvikLocation that you created. Also change the editorID to a convention like "<prefix>Marlinsvik01" if it isn't named that already. You can rename a cell by single clicking the name in the cell window.
    • Load up a house interior. Set the Location to that house's location. Then in the Interior Data tab, set "Owner Faction" to the house faction you created, and "Lock List" to the respective lock list.
    • Edit the door. Give it a Lock that is tied to the key you created; the lock level can be Novice for commoners such as these. Also set the owner faction to the house faction. It is crucial for the inside reference of the door to be owned in this way for trespassing to work properly.
    • Place the NPCs near the beds where they sleep. Set the faction of the bed to that NPC so that nobody else will sleep there. Edit the NPC's ref and name it "<prefix><NPCname>REF" (this makes it show up in-game with the "help" console command, making it easy to teleport to the NPC if needed). Then, under the "Persistence location" tab, set the dropdown to the <prefix>MarlinsvikLocation. This controls when the NPC is persistent, i.e. having its pathing calculated by the game even if not in the currently loaded area. Choosing this as the persist location means the NPC is processed if any part of Marlinsvik's exterior or interior is currently loaded. In your .esp, all references are persistent at all times anyway, but when an .esp gets merged into an .esm file like in a project, that is no longer a case. If NPCs for some reason aren't coming out of their houses even though they should, this is often why. Also, the "Unique actor" fill method in quest aliases has been found to fail sometimes if the NPC ref doesn't have a persist location.
    • In the exterior, set the ownership of any somewhat valuable item to the <prefix>TownMarlinsvikFaction so that it can't be taken without it being considered stealing. You can use the Batch Assignment tool to save some time.
      • For the interiors, the cell's owning faction takes care of this automatically. Since Gaubelin's shack has no interior, you will have to assign his posessions to him manually.

Dialogue and scenes[edit]

  • You will have a single start game enabled quest called <prefix>DialogueMarlinsvik that holds all the regular, non-quest related dialogue for this settlement.
    • Greetings and Farewells go under the Misc tab. Create a topic of subtype "Hello"; this will contain all the greetings for 'all' the NPCs in a single stack of Infos. Same with the Farewells, which go in the subtybe "Goodbye".
      • In Skyrim, unique NPC greetings usually just get a reset timer, typically of 0.5 hours. This means they are heard in sequence until they have all had a turn and the NPC drops down to generic lines ("Yes?", "Need something?" and so on) until half an in-game hour has passed and the lines reset. That said, writers often do not write greetings and farewells with a specific order in mind, so giving them the Random flag is an option. If you do this, be sure to set Random End on the NPC's last line in the stack, or generic lines will be interspersed with the unqiue ones.
      • Some greetings depend on the completion of quests that you haven't implemented yet. It's up to you how to go about this; for example, you could just make a note of which lines you need to go back to later on to add conditions. In a project, sometimes such a quest will not be available for implementation until much later, and there will have to be some organization in place to keep track of these dependencies.
      • The reason these quest-dependent greetings aren't contained in the quests themselves is that we want to be able to Stop() those quests after they are completed, but that will make all the dialogue inside of them unavailable, whereas these greetings are supposed to be heard after the quest.
    • Implement standard dialogue in the Player Dialogue tab (or Dialogue Views if you prefer). There is no standard EditorID naming scheme used consistently in the base game, but try to stick something sensible like "<prefix><Questname><NPCname><branchname><Topicindex>".
      • Refer to the list of Condition Functions for any non-standard implementation notes that the writer has asked for.
      • Sadly, there is no button or condition in the CK for "unlocking" dialogue branches, so this will have to be scripted. If a dialogue line locks (or unlocks) another dialogue branch, make a quest stage for it, and add a note saying e.g. "Locks PARENTS in Wiske's dialogue" as either a fragment script or a journal entry (since this quest won't show up in the journal anyway). Then have the line set that stage, and for the dialogue that gets locked (or unlocked), use the GetStageDone condition. This means it'll work even if the stages are not set in a numerically ascending order.
      • Occasionally, a writer may specify that dialogue should be locked or unlocked when it is not actually needed to script quest stages to do so. You always have the capacity to decide what the most elegant way to implement a given piece of dialogue is.
    • Gaubelin has an "Initial dialogue" section that is a little bit different. The conversation begins with him, not with a player dialogue option. This needs to be implemented as a Blocking Branch. A vanilla example of this is Idolaf Battle-Born's dialogue.
      • The "Alias=Player" text will work even without making a quest alias for the player; see Text Replacement.
      • One of Gaubelin's greetings is specified to be valid only while the initial dialogue tree has not been gone through. However, by default, the first line from the blocking branch will be used as the greeting, even if the player is just walking past without initiating dialogue, leaving the custom greeting with no opportunity to be heard. This is why you have to put the IsInDialogueWithPlayer condition on the blocking branch dialogue.
    • Caechabhu is a merchant, so refer to the Creating a Merchant tutorial. Her dialogue doc specifies a "What have you got for sale?" topic, but you do not need to add this, since the "JobMerchantFaction" takes care of it. Since Caechabhu is a fletcher, you additionally need to give her the "JobFletcherFaction" so she has the fletcher-specific dialogue lines. Also use the fletcher buy/sell list on her services faction.
      • Similarly, Gaubelin's "I'd like training in Alchemy" topic is also handled entirely by factions, but don't give him the factions just yet, since his services are a quest reward.
      • Projects will have their own generic dialogue lines and will thus have custom "Job" factions that you will need to use.
    • Caechabhu's dialogue contains a speech check; see the Dialogue Speech Checks tutorial.
      • It is definitely important to use the "SpeechAverage" global variable in the condition rather than a numeric value. This is because the global variables are manipulated by certain Speech perks that the player can learn, whereas using a numeric value means these perks have no effect.
      • For completeness, the success option should also have an OR condition "GetEquipped: TGAmuletofArticulationList", run on the player, in case they have the Amulet of Articulation equipped. Yes, manually adding this condition to every single persuade check is how Bethesda coded the effect of this amulet.
    • For top-level branches, set the Topic priorities so that they appear in the same order as they are in the writing doc.
    • Remember that Start Game Enabled quests need a SEQ file to actually start, or you can just quicksave and quickload as a stopgap solution.
  • Scenes are done differently (see also Bethesda Tutorial Scenes). Here, there are only three, although usually there are more.
    Markers for Brina Merilis and Skald the Elder's establishing scene in Dawnstar
    • The first scene is a major establisher. This is a scene that starts the game enabled and is manually choreographed. The NPCs will take up positions (determined by packages pointing to XMarkerHeadings that you need to place) and wait day and night for the player to come by and hear their dialogue, giving the first impression of the themes of the settlement. There will usually be an initial scene phase before dialogue that only finishes when the player enters a trigger volume around the markers, so that dialogue doesn't start until the player is reasonably within earshot.
      • In dialogue actions, set a headtrack target pointing to whoever the NPC is talking to. It is also often a good idea to put empty dialogue actions for the other NPCs to make them headtrack whoever is talking.
      • For Nabuco's bark, you can use a vanilla Shared Info (using the "Share response data from info" dropdown) that will give you a standard dog bark with no visible subtitle. Such infos can be found in the quest CreatureDialogueDog.
      • You should put this scene in its own quest, and stop the quest when the scene is done (the "Stop quest on end" flag on the scene can be used for this). The reason for this is that the quest aliases needed for the scene make the NPCs persistent as long as the quest is running. Although, again, all references in an esp file will be persistent at all times.
      • You MUST have Fuz Ro D'oh installed and running, or unvoiced scenes will stall, and you will see the NPCs standing around in a deadlock forever.
    • The other two scenes are random conversations. We will let the game engine trigger these for us whenever two NPCs get within talking range of each other. The trigger mechanism is the Story Manager (see also the Bethesda Tutorial Story Manager). Each of these scenes will be in its own quest. The steps for setting it up are in this tutorial which you may have seen before.
      • One of the EditorID naming conventions in use is something like "<prefix>DialogueMarlinsvik<NPC1><NPC2>Scene01" for the quest and "<prefix>DialogueMarlinsvik<NPC1><NPC2>01Scene" for the scene. This slight variation is needed because no two objects can have the same EditorID.
      • In the Actor Dialogue story manager event node, there is a whole network of branch nodes that group scene quests by hold and then by settlement. If you were to follow this scheme, you would make a new node for Marlinsvik under HaafingarHoldScenes. However, we recommend that you keep your modded content separate from the base game, so make a top-level node for your assignment (and mark it as "Shares event" to play nice). A project will typically have a top-level node like this, and maintain their own structure down from that node.
      • The second random conversation is a 3x3 scene. This is an in-house invention where each dialogue phase will feature one random line out of three possibilities. Implementing this is easy: in a given dialogue action, have the dialogue topic contain three TopicInfos that are flagged "Random".

If you have done everything correctly up to this point, the major establishing scene will play out and then the NPCs will lock themselves inside their homes. You can use the "unlock" console command on the door to get inside quicker, but the NPCs will be yelling at you for trespassing, making it difficult to test the dialogue. Using the console command "toggledetection" (or "tdetect") will make them more cooperative. You won't be able to test all of the scenes until their daily schedules have been made, which is the next step.

AI Packages[edit]

Now that you have first-hand experience with the NPCs and their dialogue (although it would be good to take a cursory look at the quests too), it's time to think about their daily schedules. These are implemented in the form of AI Packages (see also this page for an explanation of all the settings in a package). Since NPCs' standard schedules aren't quest-related, these packages belong in the AI Packages Tab of the relevant NPC.

The aim is to create a feeling of hustle and bustle in the settlement and make it come alive, while properly conveying each NPC's background through what the player sees them do, and making sure that NPCs will meet each other if they have a possible scene together. You will have noticed a schedule specified in each NPC's document. These are more like guidelines or suggestions than something to be implemented literally; as the person working directly in the game engine, you will have a better intuition of what works well in-game. One in-game hour is a lot shorter than how it may seem on paper; this is especially true if an NPC needs to travel a long distance between activities. But you will also have a direct view of the environment and everything in it that you can work with, as well as quick access to all the settlements in vanilla Skyrim that you can compare with. So this section entails some genuine creative freedom.

  • Try to use pre-existing, reusable packages when it is convenient to do so. These all have EditorIDs beginning with "default". They often point to the NPC's editor location as their destination; the editor location is wherever you placed the NPC's reference in the world, namely inside their house, which is what makes these packages useful.
    • It's generally a good idea to stick a "defaultSandboxHomeowner" or a similar package at the bottom. This will take care of any "sandboxes at home" sequences in between other activities.
    • Other than that, it's typical to organize the package stack so that earlier packages in the day are at the bottom, with later packages up top. You should be able to find "defaultSleep" and "defaultEat" packages that roughly fit the timespans you want. If a package has "16x4" at the end of its EditorID, that means it begins at 16 hours (in military time) and lasts for 4 in-game hours, so from 4 p.m. to 8 p.m.
    • Some default packages will have the "unlock doors" flag set, others not. If a package unlocks doors, that means the player is able to come inside and visit without trespassing. Eat and home sandbox packages tend to unlock doors whereas sleep packages don't; if a default package bucks this trend, it is often indicated as such in the EditorID. You generally want the player to be able to enter a house legally so that the level designers' work can be enjoyed by all.
  • For most other types of packages, you will need to point to a custom location and therefore you will have to make custom packages. A convention for this is something like "<prefix><Settlement><NPC><Activity>10x2" where the 10x2 has the meaning explained previously. Make sure the times in the EditorID match up with how you configure the package itself, or you may be quite confused later on.
    • For the target of the package, you often want the NPC to be working in a general area rather than targeting a specific object. In such cases, you'll want to place an Xmarker and give the reference an EditorID like "<prefix><Settlement><NPC><Activity>Marker" and use that in the package, rather than take some nearby object.
    • The radius around the target is measured in units. If you're having a hard time visualizing a certain radius, look in the 3D Date tab of the marker reference and fiddle with the "Test radius" parameter. It'll show this radius in the render window.
    • A package with the template SandboxMultiLocation can be very useful as a broad solution. This way, you can have an NPC automatically rotate between several locations for a good chunk of their day, such as inside and outside of their home.
    • Be sure to disable "Allow eating" if applicable, otherwise the NPC will, in fact, be seen eating or drinking every chance they get.
  • You will have to place additional AI markers to aid NPCs in their schedules. Level designers typically only concern themselves with things that are visible, leaving you to place idle markers, Xmarkers, and occasionally furniture objects without a visible model. Make sure to set the ownership of idle markers and furniture to a specific NPC or faction if you don't want them to be used by everyone.
    • For a demonstration of available idle animations, see this video. Most of these idles have corresponding idle markers that you can use. Of course, many animations are not suited for ordinary NPC activities.
    • Jerome's potato patch will need a good handful of FarmingIdleMarkers for him to randomly switch between. As implied earlier, his farming package should point to an Xmarker located in the middle of the patch.
    • Making an NPC carry wood takes a bit of setting up, but adds a very nice touch. The package will need the CarryItem template and point to two WoodPiles, usually one near the chopping block and the other one near the main wood stockpile. Then you should also put the CarryItemScript on the NPC and configure its properties to spawn firewood if the NPC gets interrupted mid-carry, and add fragment scripts to the package in the "Begin/End/Change" tab to activate this behavior. See Faendal from Riverwood as an example NPC who carries wood as part of his daily schedule.
    • For Caechabhu, you probably don't want her tanning leather all the time, so you can improvise by, for example, giving her a WallLeanMarker (an invisible furniture) to make her lean against her house. Or you can have her spend part of her day in a Patrol around the village and the nearby wilderness (chain a bunch of PatrolIdleMarkers together via "linked reference", make a package with the Patrol template, and point it to a marker in the chain), evoking the impression that she's hunting.
    • For children like Wiske, it can be difficult coming up with things for them to do, since they can't perform working activities such as farming. If multiple children are around, you can make them run around along a patrol path to simulate them playing tag. Otherwise, having a child stand around doing nothing can often do the job. Maybe place an InvisibleChairMarker to use if there is a suitably-sized rock or crate in the village.
    • Gaubelin will get some mileage out of his alchemy set, but also experiment with putting markers like the StudyIdleMarker around his shack.
    • Inside a house, placing a SweepIdleMarker or two can work well. If there is a cooking set, the NPC will use that too.
  • For testing,
    • If an NPC isn't doing what they're supposed to, the cause is often navmesh-related. The navmesh door links might be broken, in which case you need to finalize the navmesh. Or there isn't any navmesh extending to the destinations of some packages. Of course, in this assignment, only flawless navmesh is provided to you.
    • Otherwise, check if there isn't some package higher up on an NPC's package stack that you forgot to set time restrictions on.
    • Consider using More Informative Console, which displays an NPC's current AI package.
    • While you're at it, you can check to see if the random conversations are working. The game is very proactive about these; if two NPCs get anywhere near each other and there is a random conversation for them, then the scene is practically guaranteed to fire. If it doesn't, then something is wrong. Again, you must have Fuz Ro D'oh running.

Quests[edit]

Lastly, the assignment includes two small quests. These aren't any longer than the Bendu Olo and Arcane Scribe quests you've already seen, but they include some twists that are useful to familiarize yourself with.

In Skyrim, EditorIDs for misc tasks have a hodgepodge of contrasting conventions, usually containing the words "Freeform" or "Favor". Here, we recommend you use "<prefix>MarlinsvikFF01" and "<prefix>MarlinsvikFF02" for the two quests.

  • Find Wiske's Doll is a so-called radiant quest, since the dungeon is randomly selected. Refer to the Bethesda Tutorial Radiant Quests for a refresher.
    • Dungeons usually have a "LocSet" keyword for the tileset it uses and a "LocType" keyword for who or what resides there. You can use the GetInCurrentLoc condition function to restrict the search to Haafingar. Ironically, there will only be one eligible location, namely Steepfall Burrow.
    • You could script this quest to start during Wiske's dialogue, or you could have it start game enabled, like these kinds of quests usually are in vanilla. That means the player can come across Skanulike in a chest before ever visiting Marlinsvik, hence the dialogue option taking this possibility into account. Vanilla is less ceremonious about this.
      • Another possibility of starting the quest in use in some Beyond Skyrim projects is with the Change Location story manager event node, distributing the load so that the quests in a location get started when the player travels there rather than all at game start.
    • In the Scribe quest, you presumably created a new base object for the ring so that it has a unique name. Let's try and avoid that overhead this time. You can have the alias create a regular child's doll (see UESP for a list of Skyrim objects if you need it), make a new Message where the title is the desired display name of the item, and then select that message in the "Display name" dropdown on the alias.
    • If a line is formatted in light blue, that means it is repeated from earlier and mustn't be implemented as a separate line, or the voice actor will be prompted to record the same line twice. Sometimes you can manage it with invisible continues, but in other cases, you will have to make a Shared Info.
    • Don't know how to award a skill level in Speech? Take a peek at a vanilla example if you can remember one, or search the List of Papyrus Functions.
  • Gather Flowers for Gaubelin is trickier, since you need to implement a live updating counter based on the player acquiring items, and several kinds of items need to be treated as though they are interchangeable.
    • It's always handy if there is a vanilla example so you can copy their homework. In this case, that would be Grin and Bear It. The UESP is often a very helpful encyclopedia for vanilla content; its list of ingredients will also be of use here.
    • You can pretty much base your implementation off of the vanilla quest. The main trick to making this quest work in an elegant way is that you need to provide some central bit of code - a function to count all flowers in the player's inventory and update objectives if needed - and have it be accessible from multiple places, like the stage fragment script (for when the quest is accepted) and a script attached to a player alias (for when flowers are gained or lost). The best place to put this function is in a new, manually created script that is attached to the quest, sitting next to the fragment script. Let's say this script is named AUMMarlinsvikFF02QuestScript.
      • To run this function from somewhere else, you'll need to have the quest as an object, not of type Quest, but of type AUMMarlinsvikFF02QuestScript. In a stage fragment, you can have the CK create such an object for you using the "kMyQuest" dropdown. You can then do: kMyQuest.CountItems() for example.
      • In an alias script (as well as a dialogue fragment script for example), you can do it like this: (GetOwningQuest() as AUMMarlinsvikFF02QuestScript).CountItems()
    • Don't forget to add an event filter to the player alias script for the four kinds of mountain flowers, or to add the global variable for your counter to the "text replacement globals" list in the Quest Data tab!
    • In both quests, run Stop() to clean up after you no longer need anything in the quest. You should also provide a fail stage if the NPC dies (there are default alias scripts for this), which fails all objectives and also stops the quest. This fail stage is less relevant in Wiske's quest, unless you want to account for the player using a child killing mod.

And that's it! You have now gained essential experience in implementing a village. What's more, implementing a city is essentially the same task, just on a much larger scale. As before, zip up your esp and scripts and share it with us.