Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_OpenStorageAction.c
Go to the documentation of this file.
1//------------------------------------------------------------------------------------------------
4{
5 #ifndef DISABLE_INVENTORY
6 //------------------------------------------------------------------------------------------------
7 override protected void PerformActionInternal(SCR_InventoryStorageManagerComponent manager, IEntity pOwnerEntity, IEntity pUserEntity)
8 {
9 auto vicinity = CharacterVicinityComponent.Cast( pUserEntity .FindComponent( CharacterVicinityComponent ));
10 if ( !vicinity )
11 return;
12
13 manager.SetStorageToOpen(pOwnerEntity);
14 manager.OpenInventory();
15 }
16
17 #endif
18
19
20};
modded version for to be used with the inventory 2.0
modded version for to be used with the inventory 2.0
void PerformActionInternal(SCR_InventoryStorageManagerComponent manager, IEntity pOwnerEntity, IEntity pUserEntity)