5tratz

Results 3 comments of 5tratz

> Its an issue with discord permissions, you can fix it by allowing FiveM access to discord on the client machine. Here is the relevent line in main.lua. `TriggerEvent("qb-log:server:CreateLog", "joinleave",...

I fixed it, line 119 I changed this: `entityHit = HasEntityClearLosToEntity(entityHit, playerPed, 7) and entityHit` To this: `entityHit = GetEntityPlayerIsFreeAimingAt(PlayerId(entityHit, playerPed, 7)) and entityHit` Now it works fine. It seem...

> I fixed it, line 119 I changed this: > > `entityHit = HasEntityClearLosToEntity(entityHit, playerPed, 7) and entityHit` > > To this: > > `entityHit = GetEntityPlayerIsFreeAimingAt(PlayerId(entityHit, playerPed, 7)) and...