$definevariable
From Valve Developer Community
Creates a named string variable. This is tiny subset version of $definemacro that only defines a string substitution that can be in other QC commands.
[edit]
Syntax
$definevariable (variablename) (string)
[edit]
Examples
$definevariable baseFile "fighter1" $sequence attack $baseFile$_Attack $sequence run $baseFile$_Run $sequence idle $baseFile$_Idle
