Showing posts with label announcement. Show all posts
Showing posts with label announcement. Show all posts

Saturday, January 26, 2013

New ModDB page for Oblivionauts!

A new ModDB page has been created for Oblivionauts! On it are new details and art for our upcoming Skyrim modding Project. Please feel free to check it out, read about it, visit our links, see our concepts, and let us know what you think!

ModDB page


Wiki:
In addition, we have a wiki that we are using to develop the mod and store information. When the mod is released, it will also act as the main website for Oblivionauts. If you want to learn more about the mod's details, you can visit it at the link below. The hidden Development section contains the majority of our details for now. When pages are finalized, then they will be moved out of the hidden section. Please keep in mind as you view the wiki, that it is everything on there is subject to change, and not everything is visible to non-developers.

Tuesday, November 27, 2012

Winter Break Modding Project

I'm thinking about working on a Skyrim modding project over winter break. Unlike my previous projects, this one would involve storytelling and quests rather than gameplay recoding. Are there any of y'all that would be interested in working with me for a few weeks between semesters to create an interesting and unique modification to Skyrim? I am looking for people with any of the following skills:

Story/quest writing
Character design
Art/3d-modeling
Programming
Level design
Voice Acting
Fictional worldbuilding
Game testing

The concept for the project has already been developed some, but I would like input while developing the rest of it and help with creating the actual mod. For those of you who have played Skyrim but do not have a PC copy, I may consider PAYING to get you a copy of the game for your PC.

Obviously, you will need to have a PC capable of running the game if you are going to work on the coding, modeling, or level design. You would also need to be willing to work with me and any others on the team, as well as be able to devote some time each week during the break to the project.

If you are interested, then please message me and I can give you more details on the project. I can guarantee that you will find plenty of interesting work if you do join. :-)

Once the project is complete then it would be released for free online for players to download. A donation link would be available for fans, and any donations would be split with you.

If you are interested in my previous modding work, you can check out the following pages:

Skyrim Nexus: http://skyrim.nexusmods.com/users/1266423
Steam Workshop: http://steamcommunity.com/profiles/76561198008458024/myworkshopfiles
Modding Blog: http://tesmods.blogspot.com/


My mods have been downloaded over 40,000 people and viewed by likely 300,000.

Wednesday, October 24, 2012

SkyUI 3 MCM compatability

Howdy, y'all.

I'm sorry for not releasing a new version during the past couple of months. I have been far too busy with school and work to make an update. I have not forgotten about this mod, though. If at some point I have more free time to work on it, then I will. I am not ignoring the complaints and bug reports that y'all give; rather, I simply haven't had the time to respond to you or to fix them.

That being said, with the announcement of the Mod Configuration Menu for SkyUI 3, I am going to try to take out some time from my busy schedule the next few weeks to make an MCM menu for Way of the Monk. One of the biggest complaints about this mod is the menus. They're crap. I know. Not only are they annoying to you, but they are annoying to me. To make the menus of the sort that WoM uses now often requires over 1000 lines of code, and many hours. I spent probably 100-200 hours working on the menus alone. The MCM is not only easier for the player to use, but supposedly it reduces the scripting time to a couple of hours max. Not only that, but it allows checkboxes, drop-down menus, option highlighting, sliders, and many other useful features. It is still in alpha phase, so it might change over time and y'all might not have downloaded it yet. However, once I learn the system and have taken the time to script it, I will hopefully have made Way of the Monk MCM compatable.

What does that mean for y'all? Well, first, the menus won't be so annoying. You will be able to press 'escape' to access them, rather than casting a spell or power. You will also be given more options. I will try to code into the menus new options including leveling speed. This will allow you to change how quickly you raise your Monk skills. I am not sure what the menu restriictions are, but I *might* (I stress *might*) even be able to create a menu for choosing perks. I hate the current menu system that this mod is using. It's awful. Especially when choosing perks. Many peoples' complaint is that they don't want to have to use those awful menus, and they want the process of choosing new perks to be easier. So far, that has not been possible without replacing an existing skill tree in the main leveling menu. MCM may allow me to do that.

I'm not sure exactly when I will create this menu. Likely, it will be an incremental process that may take a week or two, as I learn the MCM system and code when I get the opportunity. I may also need to wait a while for MCM to get out of alpha stage, to ensure that I don't have to rewrite part of the code. Supposedly, Gopher is going to make a tutorial on creating MCM menus, which I am also waiting for. The one downside of this is that the MCM menu will not be available for Steam Workshop users. I am going to add an optional download here on the Nexus for it. Also, I may have to change Way of the Monk to an ESM, which would make it incompatible with the Workshop.

Monday, August 13, 2012

Becoming A Master

...or at least a master file.

So, over the past version or two I have slowly been considering the possibility of changing my mod from an .esp to an .esm. Or, more understandably, from a plugin to a master file. The difference between plugin and master files are as follows.

Plugin File (.esp): The standard format for mods. They modify or add content within master files while they are loaded. Their changes are not permanent and will not actually modify the .esm file. Instead, Skyrim reads their information and makes the changes inside of the game. Every .esp has a list of master files that are required for it to run. Most of them only require the Skyrim.esm Master File. However, if one were to require Dawnguard, for instance, then it would require both Skyrim.esm and Dawnguard.esm. When you make a mod with the Creation Kit, they are the format that it saves your changes in. They can be uploaded to the Steam Workshop.

Master File (.esm): Skyrim.esm is the main master file. They are what hold all of the main files which the game uses. They have higher priority than any .esp files in the load order. You can make an .esp that modifies and .esm, but you cannot make an .esm that modifies an .esp. They are the star of the solar system and all of the little .esps orbit around them. They can only be created by using modder-made tools to convert a .esp to an .esm, and they cannot be uploaded to the Steam Workshop.

So, why the extended monologue about the difference between the two? Mainly because I am currently giving a significant amount of thought to changing my mod to an .esm. This has a number of pros and cons, but I think that the benefits outweigh the disadvantages.

Pros:

+ Modules. I would finally be able to make all of those optional modules that people have been asking for. Some people just want the overhaul without the weapons. Some want the skills to be in the vanilla perk trees. Others want quests. Some want small optionals like a Fists of Steel perk for Light armor. Others might want a Chi system. The list goes on. Making Way of the Monk a Master File mod would allow me to make those modules. You would download the master file with the whole shebang. Then, if you wanted certain aspects changed you could either download a module (.esp) for yourself, or even make your own to use.

+ Compatibility. Compatibility issues would be much easier to solve. Instead of having to change large parts of my system to work with another mod or have them do the same thing, I (or someone else) could just build an .esp that bridges the gap between the two mods and makes them compatible. It would be totally optional and the compatibility patches would be much easier to create.

+ Teamwork. If, at some point, someone else wanted to join me on the project and help me out, then a Master File would be a LOT easier to work with. Say, for instance, that someone wanted to help me build a questline for the mod. We could 1) work together on the SAME file at the SAME time using a program made by SureAI, allowing us to simultaneously build the questline together. Or 2) one of us could make an .esp plugin for the .esm that adds a questline that is totally optional. That way you could get the main mod without having to worry about all of the issues that come with quest mods.

Con:

+ No Steam Workshop. Unfortunately, the Steam Workshop does not allow modders to upload .esm Master Files. At all. And even if it did, it has a filesize limit of 100mb. While just the overhaul would not likely meet that size limit, the modules might. Especially if they included new meshes, textures, or sounds. The normal mod has already reached a size of 72 mb. Simply adding full dialog for two characters might raise the size past the 100mb limit on the Steam Workshop. If I turned Way of the Monk into a master file, then Steam users would not be able to download the latest versions from the Workshop. I would not delete the mod, so they would still be able to get whatever version existed before the change to .esm. However, to get any later versions they would *have* to use the Nexus.

Conclusions:

So, what do y'all think?

Personally, I think that it is worth the risk. As the creator, I want to grow this mod as much as I can without being limited by the Workshop's capabilities. However, I do not want to alienate players unless I have to. Please feel free to give me your input on the choice.

Friday, August 3, 2012

Dawnguard is now available for PC!

As of today, August 2, the first Skyrim DLC Dawnguard is available for download to PC from Steam. It's been a fairly long wait, and is priced quite highly. It's appearance was also quite sudden, with no announcements from Bethesda. Regardless, it is now purchasable. Here's hoping that it is worth the wait.


Purchase link at Steam: http://store.steampowered.com/app/211720/