-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Wonderlands Contribution
This is a guide to help new users contribute to the wlmods mod repository.
The raw github checkout is a little difficult for users to find mods on, since they're only organized by user. So, we've got a WL ModCabinet wiki which is organized in a way that should be much easier for users to find what they're using for. That wiki is auto-updated every ten minutes, and if you're checking your mod into the wlmods repo, it will automatically get picked up so long as it meets some criteria.
The Contributing to WL ModCabinet page has all of the information about ways to control how your mod shows up in the cabinet, but there's only a couple of hard dependencies:
- Your mod must have a
.wlhotfix
file extension - In the comments at the very top of the file, your mod must contain the following fields:
@title
@author
@categories
@license
- The list of valid categories can be found on the Mod Categories page.
For instance, here's the header from Apocalyptech's Cheaper SDUs mod:
@title Cheaper SDUs
@version 1.0.0
@author Apocalyptech
@contact https://apocalyptech.com/contact.php
@categories cheat, economy
@license Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
@license-url https://creativecommons.org/licenses/by-sa/4.0/
This step is optional -- if you don't care about having your mod in the ModCabinet, you can feel free to format it however you like.
If you want to specify contact information, you can use the label @contact
, @contact-email
, or @contact-discord
, or any combination of those. Keep in mind that this information will be posted on the wiki, so only put contact info in there that you're comfortable being public!
This only needs to be done once, when you first start modding. Create a personal "Fork" of the BLCM/wlmods repository (top right).
This only needs to be done once, when you first start modding. You need to create a new directory with your desired username. The only real way to do this is with the "Create new file" button, so you can't use the "Upload files" button here. Make sure you're on your own personal fork while you do this:
At the next screen, you need to type in your username followed by a /
, and the page will automatically know that you're talking about a new directory, like so:
You can either paste your new mod directly into the box, or just put in a temporary file.
Once you have your directory in place, on your personal fork, you can use the Upload files
button to upload files directly into your user folder:
If you have a lot of mods, it might make sense to organize your mods into subfolders. To create new folders, you'll have to use Create new file
like you did originally, and use /
when typing in the filename to create a new directory. That way you can use Your Name/Mod Name/mod.txt
instead of Your Name/mod.txt
.
-
While still on your personal fork, send a
Pull Request
toCompare
merge your fork to themaster
branch. - Make sure that the
branch
of yourfork
that you wish to submit (#1) on the right side is correct, andBLCM/wlmods
master
branch is on the left, then submit the request (#2). - Then wait for someone on BLCM to accept, merge and commit your request for you, if it takes more than a week feel free to ping someone on the discord to let them know that you've been waiting an extended period of time for a pull request.
- This is NOT permission to ping someone as soon as you send a pull request, remember that not everyone is on discord/Github 24/7, it will take some time regardless if you ping someone or not, and will be seemingly random at times, so please be patient when waiting for approval.