Jump to content

Building Mods for Skyrim Royally Stinks!


David Brasher

Recommended Posts

Skyrim is just all fouled up. Here are some issues that make it harder to mod than Oblivion:

 

(1) The NavMesh bug. You want to build a dungeon or a house? You are out of luck. You might be able to put your NavMesh into an .esm to pair with your .esp and have things work okay. Otherwise all the actors but you can be frozen to one spot and unable to move around.

 

(2) NavMeshing itself stinks. Oblivion pathgridding is much faster and easier, and actors use it quite well. The Interface for NavMeshing is somewhat like using Blender which is not the easiest program to learn. The forums are full of people having NavMesh issues like the one with the green bars/green triangles: having difficulty connecting the portals between cells. The system creates lots of edits that look sort of like mod dirt. Let's say you place a dungeon entrance in the center of an exterior cell. by the time you fix the NavMeshing, your chaste little dungeon entrance will possibly edit ten exterior cells! Your cell, plus the nine cells surrounding it.

 

(3) The facegen design flaw. You want to add some new NPCs to the game? You want to change the face on a vanilla Skyrim NPC? Forget about it! Your new face is going to be ugly because the skin color will be darker than the rest of the skin on the NPC and there will be a sharp neckline. The only workaround people currently have is to convert the .esp to an .esm, select the new or edited NPCs, and press CTRL + F4 to export facegen data. Now when you upload your mod, you will need to upload meshes and textures too, just because you wanted to add or change a face.

 

(4) The Papyrus scripting language stinks to work with. You want to make a quest mod? You want to have cool scripted events or items in your mod? Forget about it! Oblivion scripting language is a nice friendly C++ sort of language. Papyrus is a really bad Lua sort of thing. You spend half of your time setting up properties to attach to variables. This extends that. That extends the other. The extension extends the extension. You can't refer to anything in the game directly. You want to use Player in your script? Tough luck! For every script and result script you write that refers to Player, you will have to initialize the variable PlayerREF (type actor) and make sure that the property PlayerREF is set as the value for PlayerREF. And there are no Begin GameMode blocks! You are going to have to get real creative with triggers to try to make things happen in your scripts.

 

(5) External script files. The scripts are no longer contained in the .esp. This makes them hard to gather up when you are packaging a mod. The Steam Workshop auto-archive function is broken and will not package all the files you need. One thing to watch out for is vanilla Skyrim scripts you edit. The packager won't always see and gather those, even if it gathers the new scripts you wrote. External script files makes it difficult to package mods, difficult to install mods, and really difficult to remove mods you no longer want. It even makes it hard to update mods if the modder is switching over from the old-school loose files packaging to the more sophisticated .bsa packaging.

 

(6) Erratic unreliable game engine. You want to have custom dialog or quests in your mod? Good luck! There are numerous reports of new dialog failing to work. It works on the computer it was built on, and it works on most other computers, but there is a substantial number of other computers it will not work on. No pattern has been found to predict which computers these will be. A couple of explanations have been found for some of the issues, but the fixes do not work on all the problems. Voiced dialog that has been put into .fuz format rather than .wav format is usually, but not always, more reliable. Situations where there is little or no lag often, but not always, makes the dialog topics appear more reliably. Quest markers don't even appear reliably in custom quests. This could totally break some quests where there is not text describing where you need to go next. The cause of this bug and the way to fix it is not known.

 

(7) The .fuz files. If you have voiced dialog in your mod, you are supposed to put the combined .wav and .lip file into a .fuz file or the dialog may not work. You never had to do this in Oblvion. The .wav files worked just fine. Bethesda did not even provide an Unfuzer program. It was up to a talented programmer/modder to build one.

 

( 8 ) You can't merge mods. You want to merge your favorite mods to shrink your load order? Sorry. You want to work on a mod team where everyone makes an .esp and then they all get merged? Maybe someday. (Actually you can merge mods with the program TESVEdit which Bethesda did not provide and which a programmer/modder had to write. But it is not easy, and not automatic like TES4Gecko. It can take a long time and you have to be careful to not break the mod.)

 

(9) Horrible mod conflicts. There is no TES4Edit to automatically clean out identical-to-master records. All the mod cleaning has to be done manually, and if you are a modder, you probably have some idea of how badly the other modders besides yourself manually clean their mods. In Oblivion, mod dirt usually gives you ugly bugs. In Skyrim it often gives you CTDs. There have been reports that if two mods change the position of a single object, the game will crash. This did not happen in Oblivion.

 

(10) Worldspace generation software broken. You want to build a new worldspace? Sorry to disappoint you. Bethesda acknowledges that the software it provided the public for creating worldspaces does not work right.

 

 

Ten is a nice even number. I guess I will stop. I could probably go on and on to higher numbers.

 

Skyrim is just not a nice game to build mods for. It isn't fun. It is a lot of hard miserable work. Modding is supposed to be a fun hobby. A modder could suddenly discover that he or she is working really hard, making little progress, and not having fun.

 

Then in a moment of lucidity the modder suddenly may ask him or herself, "Is the game worth the candle?"

Edited by David Brasher
Link to comment
Share on other sites

Welcome back child, to the embrace of Oblivion modding! We shall never let you go!

 

lol

 

Seriously though, I hear your frustration. These are all growing pains, I suppose, for the Skyrim modding scene. To wait it out a while 'til the kinks are worked out or to persist on creating and help discover some modding challenges and perhaps their solutions, is a choice for you to make and hopefully enjoy.

 

But coming from the heyday of Oblivion modding, it really is a different environment... harsher, colder. (see what I did there? lol)

Edited by AnimalRiot
Link to comment
Share on other sites

But you also have to realize that Oblivion was probably much the same way when it first came out too. I wasn't here when it happened since I bought the game and joined the modding scene in '08, but I know there was a LOT of legwork completed before a lot of the good mods even came out. Perhaps Skyrim is the same way, no?
Link to comment
Share on other sites

I'm gonna give skyrim some time when stuff like nif code is good as oblivions.

Also.. Character creation is horrible, you cant really do anything else than mess with presets and i dont think that has improved much yet.

Link to comment
Share on other sites

(4) The Papyrus scripting language stinks to work with.

  • I have a hunch that it's based on Java, it certainly reminds me of it. Having no preconceptions about the scripting language, I like that because I understand basic OOP.
  • Did you read the CK/Scripting intro? This in particular: Differences from previous versions? I'm gonna assume you did.
  • Want more info? Java - object oriented programming concepts
  • Android events (also java) Android events ... its not a lot to read and will probably clear up at least something for you.
  • C++ is not user-friendly. If you know how the language works, then it's you-friendly, not user-firendly.
  • There are quest and item scripts out there already, no need to forget about anything :)
  • You spend half of your time setting up properties to attach to variables.
    Want the player?
    ScriptName Lokir extends ObjectReference
    Actor p
    Event OnSomething(ObjectReference fus, Form ro, int dah)
     p = Game.getPlayer()
     ; or just skip the ref
     debug.trace( game.getplayer().getav("health") )
    EndEvent
    


    What's so hard about this? You have a game global and that knows always where the player is.
    Half the time you wont even need the reference, unless of course you find chain-calling to be messy:
    (boolean ok = MooObject.getRefToFoo().isBarDone()).

  • This extends that. That extends the other. The extension extends the extension. Java inheritance.
  • You are going to have to get real creative with triggers to try to make things happen in your scripts.
    Yeap, I have to agree here. Will probably be less of a burden once we get to know the language.

 

(5) External script files.

  • External files are good because they make the mods more Modular (perhaps not a self-evident advantage in design,
    but it's effective and clean at least) and allow you to use external editors.
  • steam workshop something broken - not papyrus problem. For an alright example on how to package things,
    look at the Bag of Holding archive
  • difficult to install mods, and really difficult to remove mods you no longer want. - Enter NMM.
    If for some reason you don't like it, I'd say its relatively easy to remove files that were unpacked from an archive because you have the filenames in the archive.
  • Voiced dialog that has been put into .fuz format rather than .wav format is usually, but not always, more reliable. - sounds like a PEBCAK.
    But there should have been tools for working with those files.
  • You want to have custom dialog or quests in your mod? Good luck! - Yeap, same as the other TES games
     

 

Stuff I don't cover in your post, is stuff I know nothing about.

 

Then in a moment of lucidity the modder suddenly may ask him or herself, "Is the game worth the candle?"

That's a fair question.

Edited by tox2ik
Link to comment
Share on other sites

It is a pain and the Creation Kit is so buggy. I don't know how the people who made the game were able to finish it. They redone the scriping codes so it is like learning a foreign language which I was very comfortable with Oblivion or Morrowind codes. And I add vanilla statics in the CK and in game they only show up half the time. There are quite a few mods I want to make for Skyrim but it won't work with me. Oblivion was a bit of a pain when I started but not even close to Skyrim. I will just love someone to make a conversion of Oblivion to Skyrim scripting codes like GetStage, Begin Gamemode, etc.
Link to comment
Share on other sites

Well, lets see, you need to learn papyrus if you want to script, need to learn flash if you want custom menues.... beth just made modding skyrim significantly more difficult. In the overall scheme of things, if you have a team working on something, ok, I can see that.... but, most modders do not have all the skills that seem to be required now. I know it certainly turned me off to doing anything with the CK.....
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...