Main/resources/[standalone]/illenium-appearance/client/framework/framework.lua
2025-06-07 08:51:21 +02:00

11 lines
279 B
Lua

function Framework.GetGender(isNew)
if isNew or not Config.GenderBasedOnPed then
return Framework.GetPlayerGender()
end
local model = client.getPedModel(cache.ped)
if model == "mp_f_freemode_01" then
return "Female"
end
return "Male"
end