I don't know how to make the one .Cs file to make them all in one thingy.
Here's how you do it, step by step.
1. Rename all of your .cs files in your Add-Ons folder to have a .code extention. Windows will bother you about the file becoming un-readable, but ignore that, and let it change the extension.
2. Make a new .cs file in Notepad.
3. Here's the kinda hard part. You have to make the .cs execute a certain set of these .code files, and this is where you have to customize it.
But, to execute something, you use this code:
exec("Add-Ons/YourFile.ext");
Where YourFile is a filename within Add-ons, and ext is .cs or .code or something.
This causes the game to read the file, and attempt to execute whatever commands lay within. Just make sure that you are exec'ing text-based files, lol, or you might crash the game.
Also, you may think that you use a backslash "\" in an exec command, but you actually use forward slashes "/" in file paths, in TorqueScript.
Simply make exec lines for each file that you want executed.
After which, go and check it's box in Blockland, start your server, and all of the files should be executed, and they should work just as if you had just checked their .cs versions in there.
4. ???
5. Profit!
6. Done!
