I have a server with login system and sometimes, when the player logs in, the game autoselect him the "Locked Chase Cam" instead of the "Free Chase Cam".
I want to be always Free Chase Cam.
It's like random, sometimes I join and get Locked, others Free....
Searching at ReGameDLL I see:
Also, https://github.com/s1lentq/ReGameDL...5d2166f66980/regamedll/dlls/player.cpp#L4057;
How to set always Free Chase Cam ? AutoDirector option is always disabled:
I want to be always Free Chase Cam.
It's like random, sometimes I join and get Locked, others Free....
Searching at ReGameDLL I see:
Код:
default:
Observer_SetMode(m_bObserverAutoDirector ? OBS_CHASE_LOCKED : OBS_CHASE_FREE);
break;
}
Код:
static int iFirstTime = 1;
if (iFirstTime != 0 && CSGameRules() && CSGameRules()->IsCareer() && !IsBot())
{
Observer_SetMode(OBS_CHASE_LOCKED);
CLIENT_COMMAND(edict(), "spec_autodirector_internal 1\n");
iFirstTime = 0;
}
else
Observer_SetMode(m_iObserverLastMode);
How to set always Free Chase Cam ?
24 Фев 2024
Вложения
-
584.9 KB Просмотры: 275