2021-08-29 23:34:48 -04:00
|
|
|
void main()
|
|
|
|
{
|
2023-09-17 23:08:55 -04:00
|
|
|
DelayCommand(0.2f, ActionSit( GetNearestObjectByTag( "RA_PLC_CHAIR001")));
|
|
|
|
|
|
|
|
// Create a cutscene paralysis effect
|
|
|
|
effect eParalyze = EffectCutsceneParalyze();
|
|
|
|
|
|
|
|
eParalyze = UnyieldingEffect(eParalyze);
|
|
|
|
|
|
|
|
// Apply the paralysis effect to the chair
|
|
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eParalyze, OBJECT_SELF);
|
2021-08-29 23:34:48 -04:00
|
|
|
}
|