BOOL _INVENTORY_GET_INVENTORY_ITEM_LAST_CREATION(int inventoryId, Hash item, int* year, int* month, int* day, int* hour, int* minute, int* second);
| Property |
Value |
| Native Name |
_INVENTORY_GET_INVENTORY_ITEM_LAST_CREATION |
| Hash |
0x112BCA290D2EB53C |
| Return Type |
BOOL |
| Build |
1207 |
| Parameters |
inventoryId (int), item (Hash), year (int*), month (int*), day (int*), hour (int*), minute (int*), second (int*) |
Description: Returns the last creation date of an inventory item
Usage
Lua (Direct):
local result = InventoryGetInventoryItemLastCreation(inventoryId, item, year, month, day, hour, minute, second)
Lua (Hash):
local result = Citizen.InvokeNative(0x112BCA290D2EB53C, inventoryId, item, year, month, day, hour, minute, second)
Back to INVENTORY