- Katılım
- 3 yıl 8 ay 6 gün
- Mesajlar
- 810
- Web sitesi
- bakitelli.com
- Discord
- https://discord.gg/534G4KX6BT
Bu sorunu forumda çok görmeye başladım bunun üzerine ufak bir rehber konusu bırakmak istedim
m3_inventoryhud/client/client.lua
BU KODU
----------------------
--------------
BU KOD İLE DEĞİŞTİRİN
---------------
SORUNUNUZ ÇÖZÜME ULAŞTIYSA VEYA YAPAMADIĞINIZ BİRŞEY OLURSA :
credit : @Recep1
m3_inventoryhud/client/client.lua
BU KODU
----------------------
Kod:
ESX.TriggerServerCallback('m3:inventoryhud:server:getAmmoCount', function(ammoCount)
GiveWeaponToPed(playerPed, hash, 1, false, true)
if checkh[weapon] == hash then
SetPedAmmo(playerPed, hash, 1)
elseif Config.ItemWeapons.FuelCan == hash or 'WEAPON_FIREEXTINGUISHER' == name then
SetPedAmmo(playerPed, hash, 4500)
elseif not ammoCount then
SetPedAmmo(playerPed, hash, 1)
elseif ammoCount < 1 then
SetPedAmmo(playerPed, hash, 1)
else
SetPedAmmo(playerPed, hash, ammoCount)
end
end, hash)
BU KOD İLE DEĞİŞTİRİN
---------------
Kod:
ESX.TriggerServerCallback('m3:inventoryhud:server:getAmmoCount', function(ammoCount)
GiveWeaponToPed(playerPed, hash, 1, false, true)
if checkh[weapon] == hash then
SetPedAmmo(playerPed, hash, 1)
elseif Config.ItemWeapons.FuelCan == hash or 'WEAPON_FIREEXTINGUISHER' == name then
SetPedAmmo(playerPed, hash, 4500)
elseif not ammoCount then
SetPedAmmo(playerPed, hash, 1)
elseif ammoCount < 0 then
SetPedAmmo(playerPed, hash, 1)
else
SetPedAmmo(playerPed, hash, ammoCount)
end
end, hash)
SORUNUNUZ ÇÖZÜME ULAŞTIYSA VEYA YAPAMADIĞINIZ BİRŞEY OLURSA :
Linkleri,görmek için
Giriş yap veya üye ol.
credit : @Recep1
Moderatör tarafında düzenlendi: