Sorry I didn't quite understand the last sentance, Right now I got the following:
PHP Code:
new AssassinT[] = "models/player/AssassinT/AssassinT.mdl"
new AssassinCT[] = "models/player/AssassinCT/AssassinCT.mdl"
precache_model(AssassinCT)
precache_model(AssassinT)
if(player_class[id] == Assassin && cs_get_user_team(id) == CS_TEAM_CT)
{
cs_set_user_model(id, "AssassinCT")
}
if(player_class[id] == Assassin && cs_get_user_team(id) == CS_TEAM_T)
{
cs_set_user_model(id, "AssassinT")
}
I have changed ASSASSIN to Assassin because it looks better, but I think I fixed that through the script now.