🛠️Adjustments

Adjustments for mWeaponshop Resource

Weapon Details Adjustment

You can edit weapon label, weapon price and weapon description from config file.

Camera Adjustment

You can edit the camera position and rotation from config file.

Weapon Skin And Tint Adjustment For QB Core

If you want to use weapon skin and tint in QB version you must edit some codes.

  1. Find " inventory:client:UseWeapon " trigger in " qb-inventory main lua ".

  2. Find this code block.

  3. Add this code below.

if weaponData.info.skin ~= nil then
        GiveWeaponComponentToPed(PlayerPedId(), GetHashKey(weaponName), GetHashKey(weaponData.info.skin))
     elseif weaponData.info.tint ~= nil then
        SetPedWeaponTintIndex(PlayerPedId(), GetHashKey(weaponName), weaponData.info.tint)
      end

Last updated