Modding:Overview: Difference between revisions

Jump to navigation Jump to search
2,889 bytes added ,  23:07, 25 September 2023
m
Add gnarf's Rhinoconaut mod and illuminatiswag's Terrors of the Depths mod
m (remove space from link)
m (Add gnarf's Rhinoconaut mod and illuminatiswag's Terrors of the Depths mod)
 
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
[[Category:Modding]]
[[Category:Modding Resources]]
<div class="nomobile">{{Ambox
<div class="nomobile">{{Ambox
| border = blue
| border = blue
Line 9: Line 9:
Caves of Qud presents a broadly extensible engine. The game's core definition files reside in <code>%game directory%\CoQ_Data\StreamingAssets\Base</code>.
Caves of Qud presents a broadly extensible engine. The game's core definition files reside in <code>%game directory%\CoQ_Data\StreamingAssets\Base</code>.


You can create mods for the game by creating a Mods folder in your game save directory, and then creating a sub-folder inside of the Mods folder for your new mod. New content can be created and existing content can be modified or replaced via data files and textures placed in this directory.
You can create mods for the game by creating a Mods folder in the same parent directory where your Saves are located, and then creating a sub-folder inside of the Mods folder for your new mod. New content can be created and existing content can be modified or replaced via data files and textures placed in this directory.


For example, on Windows: <code>%USERPROFILE%\AppData\LocalLow\Freehold Games\CavesOfQud\Mods\MyAwesomeMod</code><br>
For the exact mod folder locations for your operating system, see [[file locations#"Offline" mods (user created or manually added)|file locations]].
Likewise, on Mac: <code>~/Library/Application Support/com.FreeholdGames.CavesOfQud/mods/MyAwesomeMod</code><br>
On Linux: <code>~/.config/unity3d/Freehold Games/CavesOfQud/Mods/MyAwesomeMod</code>


== A (partial) checklist for getting ready to mod ==
== A (partial) checklist for getting ready to mod ==
Line 25: Line 23:
** GIMP is essentially useable, but it isn't designed specifically for pixel art and may take more work to make game tiles with it than with a dedicated pixel editor.
** GIMP is essentially useable, but it isn't designed specifically for pixel art and may take more work to make game tiles with it than with a dedicated pixel editor.


== Modding FAQ/Frequent Issues ==
== Tutorials ==


'''Q: I keep getting an error when trying to save my game.'''
If you're just getting started with modding, check out [[Modding:Tutorial - Snapjaw Mages]]. This tutorial is an end-to-end walkthrough of creating a new creature and some items, and then having them appear in-game. It also provides an introduction on browsing the game's data files, which you can then use to go on and mod in your own objects.


A: Most likely, you have a list in your mod. Qud's default method of saving doesn't handle lists, so you need to handle it yourself. To see how, check out [[Modding: Serialization (Saving/Loading)|this article]] on how to override Qud's default saving/loading.
The [https://steamcommunity.com/sharedfiles/filedetails/?id=1302696701%7C Blue Ctesiphus tutorial] is also an excellent starting point for new modders.
[[Category:Guides]]
 
== Possible Issues ==
 
'''I'm stuck and don't know what to do.''' Feel free to ask for help or guidance in #modding on [https://discordapp.com/invite/cavesofqud the official Caves of Qud discord server]! There are several modders there who use the channel to talk through and ask for feedback on their mods.


'''How do I troubleshoot my mod?''' A good place to start is by reading the following files that are updated every time the game runs:
* <code>build_log.txt</code>: Includes compiler errors if your mod code has errors that will not compile. These errors can prevent your mod from being loaded at all.
* <code>Player.log</code>: Includes XML errors and other miscellaneous errors that can prevent your mod from working as intended, even if it does load. Search the file for <code>MODERROR</code> statements, and review carefully for other output lines that mention your mod.


'''Q: I'm stuck and don't know what to do.'''
'''Where can I find <code>build_log.txt</code> and <code>Player.log</code>?''' See [[file locations#Log file|file locations]].


A: Feel free to ask for help or guidance in #modding on [https://discordapp.com/invite/cavesofqud the official Caves of Qud discord server]! There are several modders there who use the channel to talk through and ask for feedback on their mods.
'''My mod has been marked incompatible on Steam Workshop. What do I do?''' Update your mod to work with the latest stable or beta release of the game, then request that your mod be unmarked incompatible via either [https://discordapp.com/invite/cavesofqud the official Caves of Qud Discord server]'s #modding channel, or the support email address, [mailto:support@freeholdgames.com support@freeholdgames.com].


'''I keep getting an error when trying to save my game.''' Most likely, you have a list in your mod. Qud's default method of saving doesn't handle lists, so you need to handle it yourself. To see how, check out [[Modding: Serialization (Saving/Loading)|this article]] on how to override Qud's default saving/loading.
[[Category:Guides]]


'''Q: Where can I find 'Player.log'?'''
== Examples ==


A: The location is dependent on your operating system.
The sources for many mods are available online under various free/libre licenses. These can be a good resource for getting started with creating your own mods.


* PC: <code>%USERPROFILE%\AppData\LocalLow\Freehold Games\CavesOfQud\Player.log</code>
The following is an (incomplete) list of sources for different mods:
* Mac: <code>~/Library/Logs/Unity/Player.log</code>
* Linux: <code>~/.config/unity3d/Editor/Player.log</code>


{| class="wikitable" style="min-width: 50%;"
! Repository
! Corresponding mod(s)
! Concepts used
|-
| [https://bitbucket.org/gnarf37/qud-rhinoconaut/src/master/ gnarf37/qud-rhinoconaut]
| [https://steamcommunity.com/sharedfiles/filedetails/?id=2839943576 Rhinoconaut]
| Custom Preset, Custom player tile
|-
| [https://github.com/DeSevilla/my-qud-mods/tree/main/monsters DeSevilla/my-qud-mods/monsters]
| [https://steamcommunity.com/sharedfiles/filedetails/?id=3038334237 Terrors of the Depths]
| Creatures, [[Modding:Tiles]]
|-
| [https://gitlab.com/Armithaig/hearthpyre Armithaig/hearthpyre]
| [https://steamcommunity.com/sharedfiles/filedetails/?id=1683847053 Hearthpyre]
| [[Modding:C Sharp Scripting]], [[Modding:Sounds]], [[Modding:Tiles]]
|-
| [https://github.com/AsheIsAmazing/QudMods/ AsheIsAmazing/QudMods]
| Various mods
|
|-
| [https://github.com/HeladoDeBrownie/Caves-of-Qud-Minimods HeladoDeBrownie/Caves-Of-Qud-Minimods]
| Various mods
|
|-
| [https://github.com/Ilysen/Jademouth Ilysen/Jademouth]
| [https://steamcommunity.com/sharedfiles/filedetails/?id=2926820352 Jademouth]             
| [[Modding:Maps]], [[Modding:Quests]], [[Modding:Worlds]]
|-
| [https://github.com/kernelmethod/QudMods/ kernelmethod/QudMods]
| Various mods
|
|-
| [https://github.com/librarianmage/FinderOfRuin librarianmage/FinderOfRuin]
| [https://steamcommunity.com/sharedfiles/filedetails/?id=2812261314 FinderOfRuin]
| [[Modding:Harmony]], [[Modding:Options]]
|}


{{Modding Navbox}}
{{Modding Navbox}}

Navigation menu