Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_VehicleChatChannel.c
Go to the documentation of this file.
2 {
3  override bool IsAvailable(BaseChatComponent sender)
4  {
5  PlayerController playerController = PlayerController.Cast(sender.GetOwner());
6  if (!playerController)
7  return super.IsAvailable(sender);
8 
9  ChimeraCharacter character = ChimeraCharacter.Cast(playerController.GetControlledEntity());
10 
11  return character && character.IsInVehicle();
12  }
13 };
SCR_VehicleChatChannel
Definition: SCR_VehicleChatChannel.c:1
VehicleChatChannel
Definition: VehicleChatChannel.c:12