The first line is bugged. Unless you're wanting to use the command ($model) that's meant to point to a .SMD file, you're currently using the wrong command for that line. Since you've already got $body in use, you'll want to change it to $modelname instead, as well as remove the first "spagget" from that line.
What you have now:
[code]$model "spagget" "spagget\spagget.mdl"[/code]
What you should have instead:
[code]$modelname "spagget\spagget.mdl"[/code]
Your .QC after applying the changes:
[code]$modelname "spagget\spagget.mdl"
$scale 7
$body mybody "spagget.smd"
$staticprop
$surfaceprop "glass"
$cdmaterials "spagget"
$sequence idle "spagget_idle.smd" loop fps 1
$collisionmodel "spagget.smd"[/code]
[QUOTE=Katra804;49555536]The first line is bugged. Unless you're wanting to use the command ($model) that's meant to point to a .SMD file, you're currently using the wrong command for that line. Since you've already got $body in use, you'll want to change it to $modelname instead, as well as remove the first "spagget" from that line.
What you have now:
[code]$model "spagget" "spagget\spagget.mdl"[/code]
What you should have instead:
[code]$modelname "spagget\spagget.mdl"[/code]
Your .QC after applying the changes:
[code]$modelname "spagget\spagget.mdl"
$scale 7
$body mybody "spagget.smd"
$staticprop
$surfaceprop "glass"
$cdmaterials "spagget"
$sequence idle "spagget_idle.smd" loop fps 1
$collisionmodel "spagget.smd"[/code][/QUOTE]
Thanks, it compiles again, the funny thing is is I THOUGHT I already tried reverting the qc, weird
Sorry, you need to Log In to post a reply to this thread.