the last two steps confuzzle me. more details please.
it's actually really easy if you have a text editor on hand that supports find and replace
- upload all the add-ons you want and nothing else
- start and stop the server
- download the add_on_list.cs (it's in config/server/)
open it and you'll notice a bunch of lines like this:
$AddOn__Bot_Blockhead = 1;
$AddOn__Bot_Hole = 1;
$AddOn__Bot_Horse = -1;
$AddOn__Bot_Shark = -1;
now, to disable an add-on change the 1 to a -1, and to enable an add-on change the -1 to 1
if you only put the ones you want, you can find and replace (ctrl+h, usually) -1 and replace with 1
bam, all add-ons enabled
- save the file
- upload and overwrite config/server/ADD_ON_LIST.cs with the new version
- start server
bam, done
now, that's how "custom" gamemodes work. if you're using an
actual gamemode I can't help you.