Common Issues
On this page, you will find the most common errors and their solutions. If your issue is not listed here, or you still have trouble fixing it, please join our Discord where you can get more help
Where can I change the first-person view color settings and the position of the cloned ped?
File: pinkFrog_inventoryAddon/shared/config.lua

Where can I change the maximum number of slots and the weight limit for a player?
File: pinkFrog_inventoryAddon/shared/config.lua

Why Doesn’t the Character Appear Naked When Removing Clothes?
If you use custom EUP or additional clothing assets, make sure that the default/empty clothing items (naked parts) are defined for both male and female characters.
File: pinkFrog_inventoryAddon/shared/config.lua
skinchanger & rcore_clothing clear

illenium_apperance & fivem_appearance clear

The skeleton is still showing damage after being revived?
Add our event to the revive command system. On the server side to revive system:
If you wanna add our event in @server side files
TriggerClientEvent('pinkFrog_inventoryAddon:resetClientDamage', source)
If you wanna add our event in @client side files
TriggerEvent('pinkFrog_inventoryAddon:resetClientDamage')
I can't throw items. How do I enable throwing?
The throwing system allows selected items to be thrown and spawn a prop in the world.
1. Throwing settings in our config addon

2. Enable throwing for an item
Example item:
['example_item'] = {
label = 'Example Item',
weight = 1000,
stack = false,
canThrow = true,
propThrow = 'prop_nigel_bag_pickup',
}Required fields
canThrow = true— allows the item to be thrownpropThrow = 'prop_name'— defines the GTA V prop that will spawn when thrown, if you wanna find some props check this: https://forge.plebmasters.de/objects
Optional:
canPlaceOnGround = true— allows placing the item on the ground using the same prop
Last updated