add sborka

This commit is contained in:
2026-03-31 10:27:04 +03:00
commit f5e5f56c84
2345 changed files with 382127 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
local PLUGIN = PLUGIN
PLUGIN.name = "Military RP HUD"
PLUGIN.author = "Military RP Team"
PLUGIN.desc = "Military-themed HUD for Military RP"
ix.util.Include("cl_plugin.lua")
function PLUGIN:CanDrawAmmoHUD()
return false
end
function PLUGIN:ShouldHideBars()
return true
end
-- Настройки для HUD (using localization)
ix.option.Add("disablehud", ix.type.bool, false, {
category = "optHUD",
name = "optDisableHUD",
description = "optDisableHUDDesc"
})
ix.option.Add("disableplayerinfo", ix.type.bool, false, {
category = "optHUD",
name = "optDisablePlayerInfo",
description = "optDisablePlayerInfoDesc"
})
if CLIENT then
-- Обновление ранга
net.Receive("MilitaryRP_RankUpdate", function()
-- Здесь можно обновить ранг игрока
end)
end