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

chevron-rightWhere can I change the first-person view color settings and the position of the cloned ped?hashtag

File: pinkFrog_inventoryAddon/shared/config.lua

chevron-rightWhere can I change the maximum number of slots and the weight limit for a player?hashtag

File: pinkFrog_inventoryAddon/shared/config.lua

chevron-rightWhy Doesn’t the Character Appear Naked When Removing Clothes?hashtag

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

chevron-rightThe skeleton is still showing damage after being revived?hashtag

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')

chevron-rightI can't throw items. How do I enable throwing?hashtag

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

Optional:

  • canPlaceOnGround = true — allows placing the item on the ground using the same prop


Last updated