Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_Tutorial_LRS_ADS.c
Go to the documentation of this file.
1[EntityEditorProps(insertable: false)]
5
6class SCR_Tutorial_LRS_ADS : SCR_BaseTutorialStage
7{
8 //------------------------------------------------------------------------------------------------
9 override void Setup()
10 {
11 SCR_HintManagerComponent.HideHint();
12 SCR_HintManagerComponent.ClearLatestHint();
13
14 PlayNarrativeCharacterStage("LONGRANGESHOOTING_Instructor", 5);
15 }
16
17 //------------------------------------------------------------------------------------------------
18 override bool GetIsFinished()
19 {
20 CharacterControllerComponent charController = m_Player.GetCharacterController();
21
22 if (charController)
23 return charController.IsWeaponADS();
24 else
25 return true;
26 }
27}
ChimeraCharacter m_Player
enum SCR_ECompassType EntityEditorProps(category:"GameScripted/Gadgets", description:"Compass", color:"0 0 255 255")
Prefab data class for compass component.
void PlayNarrativeCharacterStage(string characterName, int stage)