سلام عليكم
انا مسوي مود اظهار الفلوس للتكتيك
عشانه تعرفون مود التكتيك يخفيها وكذا
المهم
بتظهر الفلوس وكلشي تمام
بس بين كل جوله يرجع كمان مره يختفي
وش الحل ؟
كود الكلينت
local components = { "weapon", "ammo", "health", "clock", "money", "breath", "armour", "wanted" }
addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()),
function ()
for _, component in ipairs( components ) do
setPlayerHudComponentVisible( component, true )
end
end)
كود السيرفر
addEventHandler ( "onPlayerJoin", root,
function ()
setPlayerHudComponentVisible ( source, "ammo", true ) -- Hide the ammo displays for the newly joined player
setPlayerHudComponentVisible ( source, "weapon", true ) -- Hide the weapon displays for the newly joined player
end
)