Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dev-chenxing/mwse-modding-tutorial
Learn to use MWSE-Lua in this tutorial for beginners! You will learn the basics of MWSE-Lua and make a MWSE-Lua mod step-by-step. No previous programming experience is necessary before following this tutorial. Built with Mkdocs
https://github.com/dev-chenxing/mwse-modding-tutorial
lua mkdocs morrowind mwse tutorial
Last synced: about 2 months ago
JSON representation
Learn to use MWSE-Lua in this tutorial for beginners! You will learn the basics of MWSE-Lua and make a MWSE-Lua mod step-by-step. No previous programming experience is necessary before following this tutorial. Built with Mkdocs
- Host: GitHub
- URL: https://github.com/dev-chenxing/mwse-modding-tutorial
- Owner: dev-chenxing
- License: mit
- Created: 2023-03-30T12:11:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-17T13:51:57.000Z (8 months ago)
- Last Synced: 2024-05-18T13:52:11.394Z (8 months ago)
- Topics: lua, mkdocs, morrowind, mwse, tutorial
- Language: Lua
- Homepage: https://amaliegay.github.io/mwse-modding-tutorial/
- Size: 7.85 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Morrowind Modding Tutorial with MWSE-Lua
In this tutorial series, you will learn the basics of [MWSE-Lua](https://mwse.github.io/MWSE/) modding. No prior programming experience is required to follow along. This guide will walk you through every step in creating a mod called *Craftable Bandage*.
This mod will allow you to use your character's bushcrafting skill from Ashfall to craft bandages from OAAB_Data and the effect will vary depending on your character's survival skill.
The mod requires [OAAB_Data](https://www.nexusmods.com/morrowind/mods/49042), [Skills Module](https://www.nexusmods.com/morrowind/mods/46034), [The Crafting Framework](https://www.nexusmods.com/morrowind/mods/51009), and [Ashfall](https://www.nexusmods.com/morrowind/mods/49057). So install them if you haven't already.
## Credits
- [Morrowind Script Extender Team](https://mwse.github.io/MWSE/#authors), for the development of MWSE-Lua
- [C3pa](https://github.com/C3pa), for the MWSE-Lua documentation
- [Danae](https://www.nexusmods.com/morrowind/users/1233897), for the original idea of Craftable Bandage
- [Greatness7](https://github.com/Greatness7), for the OAAB MWSE scripts
- [Hrnchamd](https://github.com/Hrnchamd), for the Mkdocs help
- [Jean-Baptiste Morizot](http://cargocollective.com/jbmorizot/), for BluuNext font
- [Merlord](https://github.com/jhaakma), for Ashfall, Crafting Framework, Skills Module, and coding help
- [NullCascade](https://github.com/NullCascade), for the Mkdocs help
- [OAAB_Data Team](https://github.com/Of-Ash-And-Blight/OAAB-Data), for the development of OAAB
- [Pharis](https://github.com/PharisMods), for proofreading
- [R-Zero](https://github.com/Reizeron), for the MWSE-Lua logo
- [Uncle Boss](https://www.marxists.org/), for editing and proofreading.Next - [Section 1: Introduction, Variables, Functions, Event-Based Programming](https://dev-chenxing.github.io/mwse-modding-tutorial/1_introduction/)