Creation Kit – More Quest Tweaks

In the v3.05.1 update, I added a wandering Thalmor Agent to the Immortal Coil quest in order to add some tension to the letter delivery. So, when a user was curious why there was no option to turn in the Talos worshipers, it made sense to use the same agent to do so. Moreover, as the dialogue is conditioned to the MaleElfHaughty voice and Thalmorfaction, you can actually turn them in to any male Justiciar.

Keep in mind this is not an Imperial option, but rather a Thalmor option. Imperial-aligned PCs should still be able to complete the quest normally. I’m of the belief the Imperials aren’t interested in enforcing this law, which is why Ondolemar has trouble convincing the Jarl to arrest Ogmund.

Now I realize a mod NPC, Orenius, mentions doing that very thing, but that’s to show how distanced he is from the Penitus Oculatus. In other words, the Empire basically put him out to pasture by assigning him to a zero priority task, annoying both him and the Thalmor in the process by having them work together. The reason for this “punishment” being his obsession with the Raven of Anvil.

Still, even if you disagree and feel the quest is only friendly to Stormcloaks, this will provide you with an option to turn Arilwaen in.

Hello World!

Hello world indeed. Here is the Alpha version of the new website. The domain name is temporary, I’ll be switching it out to 3DNPC.com soon enough.

FORUMS
To enter, click on the FORUMS button in the top right corner or the recent bulletin posts on the left. This is where discussions, comments, and things of that nature should take place. If you want to start a discussion regarding an NPC or quest, do it here. The Q&A is for bug reports and troubleshooting, the wiki is for information. General chat and the like goes to the forum, just click on the button in the top right corner.

Q&A
In the upper right hand corner, you’ll notice links to the forums as well as a place to ask, answer and browse user questions. Try it out, ask a question, any question, and I’ll do my best to answer it.

The one disadvantage to the Q&A section is that anonymous posters can’t ask questions. Why? I have no idea. The creators say it has to do with spam. It’s bizarre because they could’ve just gave me the option and let me decide for myself. Hopefully they’ll change that in a future update.

A FULL WIKI
The wiki is indexed more or less like it was previously, with one major change. If I’m not mistaken, it can be edited by any subscriber. Unfortunately, it can’t be edited by anonymous users, however, unless I pay $19 a month which is crazy given the information will be mostly static. The linkable text also makes a huge difference.

HTML5 AUDIO PLAYER
The audio player has a pop-out feature that will let you play music while you browse the site. This isn’t as ideal as having it run regardless of what page you’re on, but the only player I found that does that (Background Music Player) doesn’t list the tracks and titles, let alone have a playlist feature. You’ll also notice a DOWNLOAD button. Not a hallucination. You can download right off the player.

WEBM
As evidenced by the top, you’ll notice the site supports the WEBM format, which is better than uploading to Youtube because reasons. Well, mostly due to the fact that the videos load in full quality. I prefer WEBMs to GIFs because they don’t run in perpetuity and cause me motion sickness. Here are some I stole off 4chan earlier this week:
 

The last thing you should check out is the comment system. Youtube videos will automatically embed. Still working on images like GIFs and whatnot.

LINKABLE KEYWORDS
There’s a plug-in that will allow every instance of a keyword to link to that respective page in the Wiki. So if I type the words Fontaine it will link to his page automatically. This should work anywhere on the site, whether it’s the comments, the forum, ANYWHERE.

A More Valid School of Magic

coletteSometimes I think Colette’s protests are a developer’s joke, because restoration in Skyrim has a lot of technical limitations. The most obvious one is that NPCs do not heal each other. You can jack up the restoration stats all you want. You can load them up with nothing but support spells, and they will opt to use their own fists.

With Valgus, we circumvented this by using a package that overrides his base combat. In other words, when the AI normally enters fight mode, the package is telling him to stop, collaborate and heal the player. Simply conditioning the package to check the player’s health ensures it doesn’t run the moment you step on a mudcrab.

However, when implementing Valgus’ heal mechanic, I forgot about the other restoration mage in the mod, the one associated with the Forgotten Lore quest. Luckily, user ShipoftheRisingSun was kind enough to point this out. The problem of course is the heal package takes a little while to load and may lock the NPC in place.

This more than anything is why I think NPCs don’t heal each other. For whatever reason it causes them to freeze as they scan for a target, and at times stay in place until the combat ends. This is a minor complaint for Valgus, seeing as he only has to heal the player and it’s not important that he move – but running “Heal Other” packages on hostile NPCs can run into the problem of having a fixed, frozen opponent.

https://www.youtube.com/watch?v=KN-evYBRzVg

You’ll notice in the video that the mage locks into place after healing his buddy. However, you may also notice that when the player approaches the mage, he breaks from his package and returns to his normal combat AI. This is just one of a number of conditions we can use to help make the Heal Other package run smoother during combat:

restomage

 

Here is the package and conditions we are going to use to override the Restoration Mage’s combat:

Get Distance – This is for when the package freezes in place. If the player gets too close, we want the mage to return to normal combat
GetinCell – The mage freezes completely if the package is running and he switches cells, so we want it to only run when inside. This ties nicely with Olivia‘s mention of cramped spaces, and the basic intent of the quest.
GetHealthPercentage of Mage – We don’t want the mage to heal others instead of himself. This ensures they have more than 40% health.
GetHealthPercentage of Quest Alias – Here, we’re checking to see if the bandit is less than 70% health but not dead, in case the mage tries to heal the dead bandit.


videospaceLastly, another tactic we can employ is attaching a script to each of the bandits. If one of them dies, a grand healing spell is cast by the mage. While there’s a slight bit of lag because I was running FRAPS, the healing effect in this video is the result of the bandit’s death triggering a script. This might be overkill at low levels, so I’ll definitely have to clone and tweak the spell, as well as widen the radius. Still, this will guarantee that some sort of healing effect will be cast provided you don’t kill the mage first. And if you attack the mage, they’ll heal themselves anyway. When it comes to self-healing spells, that does appear to be a valid option.