Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_DeployInventoryItemRestrictedAction.c
Go to the documentation of this file.
2{
3 //------------------------------------------------------------------------------------------------
4 override bool CanBePerformedScript(IEntity user)
5 {
7 if (!restrictedDeployableSpawnPointComp)
8 return false;
9
10 string reason;
11 bool canBePerformed = restrictedDeployableSpawnPointComp.CanDeployBePerformed(reason);
12 if (!reason.IsEmpty())
14
15 if (!canBePerformed)
16 return false;
17
18 return super.CanBePerformedScript(user);
19 }
20}
void SetCannotPerformReason(string reason)
SCR_BaseDeployableInventoryItemComponent m_DeployableItemComp
Deployable spawn point with configurable conditions.