- Sep 3, 2023
- 34
- 1
I'm currently tying to make a custom TF2 model(static) for my map but I can't find any information on how to do it. The best I could find was a tutorial for garry's mod. I tried following it by downloading blender source tools and then exporting the models from blender as a .smd files, then I made a .qc file with the following commands:
QC Template:
$staticprop
$modelname "yourfolder/yourmodelname"
$scale "1.000000"
$body "Body" "testmodel"
$cdmaterials "models/tutorial/"
$sequence idle "testmodel"
$surfaceprop "metal"
$collisionmodel "testmodel_collison" {
$automass
$concave
}
Opened Crowbar in Set up game and then selected Team Fortress 2, moved to compiler tab selected the .qc file and ended up with these errors:
Crowbar ERROR: The model compiler, "C:\Program Files (x86)\Steam\steamapps\common\Team Fortress 2\bin\studiomdl.exe", does not exist.
Possible causes: The game's SDK or Authoring Tools has not been installed (usually via Steam Library Tools) or the path given to Crowbar (via Set Up Games button) is incorrect.
Crowbar ERROR: The game's "C:\Program Files (x86)\Steam\steamapps\common\Team Fortress 2\tf\gameinfo.txt" file does not exist.
Possible causes: The game's SDK or Authoring Tools has not been installed (usually via Steam Library Tools) or the path given to Crowbar (via Set Up Games button) is incorrect.
Can somebody help me with this?
QC Template:
$staticprop
$modelname "yourfolder/yourmodelname"
$scale "1.000000"
$body "Body" "testmodel"
$cdmaterials "models/tutorial/"
$sequence idle "testmodel"
$surfaceprop "metal"
$collisionmodel "testmodel_collison" {
$automass
$concave
}
Opened Crowbar in Set up game and then selected Team Fortress 2, moved to compiler tab selected the .qc file and ended up with these errors:
Crowbar ERROR: The model compiler, "C:\Program Files (x86)\Steam\steamapps\common\Team Fortress 2\bin\studiomdl.exe", does not exist.
Possible causes: The game's SDK or Authoring Tools has not been installed (usually via Steam Library Tools) or the path given to Crowbar (via Set Up Games button) is incorrect.
Crowbar ERROR: The game's "C:\Program Files (x86)\Steam\steamapps\common\Team Fortress 2\tf\gameinfo.txt" file does not exist.
Possible causes: The game's SDK or Authoring Tools has not been installed (usually via Steam Library Tools) or the path given to Crowbar (via Set Up Games button) is incorrect.
Can somebody help me with this?