Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_EquipDeployableItemAction.c
Go to the documentation of this file.
2{
3 //------------------------------------------------------------------------------------------------
4 override protected void PerformActionInternal(SCR_InventoryStorageManagerComponent manager, IEntity pOwnerEntity, IEntity pUserEntity)
5 {
6 SCR_InvEquipAnyItemCB inventoryCallBack = new SCR_InvEquipAnyItemCB();
7 inventoryCallBack.m_pItem = pOwnerEntity;
8 inventoryCallBack.m_pStorageToPickUp = manager.GetCharacterStorage();
9 inventoryCallBack.m_iSlotToFocus = -1;
10 inventoryCallBack.m_bShouldEquip = true;
11
12 manager.InsertItem(pOwnerEntity, cb: inventoryCallBack);
13 }
14}
void PerformActionInternal(SCR_InventoryStorageManagerComponent manager, IEntity pOwnerEntity, IEntity pUserEntity)