-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GTA5_b3258.exe!sub_141066CFC(0x5c5) Crash #3185
Comments
this crash happened to me a long time ago, about six months |
when fix that? |
I don't know, I'm just a contributor, I'll try to fix it when I have time but I don't know if I'll be able to fix it on my own. |
From what I've tested with my changes it prevents the crash, but I still think it would be a better idea not to use these types of peds to equip weapons. |
but some cheater will use this so its fixed now? just wait for update? |
Does the near people crash with this? |
YES |
so i report that because i just is crashed |
Oh, didn't know, but make sense 😅 |
so its fixed right |
When they merge it, yeah, it should be fixed |
Until this is merged you can kick anyone with that model with this script -- Blacklisted Models
local blacklistedModels = {
[`CS_TaosTranslator`] = true,
-- add other models here if you want to kick here
}
-- Function to check players
local function checkPlayers()
for _, playerId in ipairs(GetPlayers()) do
local ped = GetPlayerPed(playerId)
if DoesEntityExist(ped) then
local model = GetEntityModel(ped)
if blacklistedModels[model] then
print(("Kicking Player %s for using forbidden model: %s")
:format(GetPlayerName(playerId), model))
DropPlayer(playerId, "You have been kicked for using a blacklisted model.")
end
end
end
end
CreateThread(function()
while true do
Wait(500) -- check every 500ms
checkPlayers()
end
end) in general |
oh thx bro |
What happened?
when i was using the ‘CS_TaosTranslator’ model, i pulled out my weapon and got hit by a car, then i crashed, and I've seen some cheaters crash logs with this as well, i think this is their crash
Expected result
fix that
Reproduction steps
when i was using the ‘CS_TaosTranslator’ model, i pulled out my weapon and got hit by a car, then i crashed, and I've seen some cheaters crash logs with this as well, i think this is their crash
Importancy
Crash
Area(s)
FiveM
Specific version(s)
Fivem b3258
Additional information
CfxCrashDump_2025_02_22_11_01_31.zip
The text was updated successfully, but these errors were encountered: