How can I make mods? - Printable Version +- Colobot Forum - International Colobot Community (https://colobot.info/forum) +-- Forum: [Archive] New forum (2015-2019) (https://colobot.info/forum/forumdisplay.php?fid=76) +--- Forum: Colobot: Gold Edition Basics (https://colobot.info/forum/forumdisplay.php?fid=58) +---- Forum: Help (https://colobot.info/forum/forumdisplay.php?fid=61) +---- Thread: How can I make mods? (/showthread.php?tid=809) |
How can I make mods? - typo255 - 06-24-2016 There is a folder in %ColobotGoldInstallDir%\data (or $ColobotGoldInstallDir/data for *nix users) called "mods". It is clear that this folder is for user-added content, but it is unclear:
RE: How can I make mods? - tomangelo - 06-24-2016 1.Well, everything that's in /data directory might be a part of mod (new or modified textures, music, sounds, levels, etc). In plans there are also new objects with animations and logic (currently you can only make new models, that still will be animated same way), maybe there will be possibility to expand CBOT syntax or add new languages (this is only idea). 2.In /mods directory you create second directory (you can name it whatever you wish), inside it everything is just like in /data directory (models/music/textures, with subdirectories). If new files will have same filename as original ones, they will replace original ones (until they won't be renamed or removed). RE: How can I make mods? - krzys_h - 06-24-2016 As for making user levels, the original file is mirrored here: http://colobot.info/files/old/colobotusere.pdf The main change from the original Colobot is the new directory structure. There are also a few syntax changes in the level files that you should pay attention to. The most complete source of information is probably our GDD (chapter 5.2), http://compiled.colobot.info/job/colobot/job/colobot-misc/branch/master/lastSuccessfulBuild/artifact/Colobot_Gold_Edition-Game_Design_Document.pdf (if the link doesn't load, right click and choose "save link as", I think that is some problem with our new Jenkins install) RE: How can I make mods? - typo255 - 06-24-2016 Thank you. These linked documents look like they will be very helpful. |