-
Notifications
You must be signed in to change notification settings - Fork 3
Setting up a TF2 Sandbox server
This tutorial will help guide you through the steps in installing the TF2 Sandbox gamemode files, including the SourceMod files, required extensions.
This tutorial will assume that you have already had at least some experience in installing files into servers.
Extensions:
Plugins:
Download the plugin files from the latest release here, then extract all the files into your sourcemod folder. If you don't know where to extract it, it is the folder where the "sourcemod" folder is located. If asked to replace, then select Yes.
Open configs/buildmod/props.ini file using Notepad++ or any text editor programs. DO NOT OPEN WITH WINDOWS NOTEPAD!
At the end of the file, add a new line:
"propaliasname", "models/your/models/location/file.mdl", "prop_dynamic_override", "Prop Name"
For example:
"antlionhill", "models/props_wasteland/antlionhill.mdl", "prop_dynamic_override", "Antlion Hill"
- "antlionhill" stands for the prop alias, it must not be conflict with other props name, or they won't spawn.
- "models/props_wasteland/antlionhill.mdl" stands for your model location.
- "prop_dynamic_override" stands for props type, we do not give you support for any other props type.
- "Antlion Hill" stands for the name of the prop should show on the spawn menu, as well after spawn. If this is not filled, it'll be blank.
After done, reload BuildMod_Creator and BuildMod_SimpleMenu and you should be ready to go!