mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
37 lines
1.1 KiB
Lua
37 lines
1.1 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
if not ATTACHMENT then
|
|
ATTACHMENT = {}
|
|
end
|
|
|
|
ATTACHMENT.Name = "Legacy Irons"
|
|
--ATTACHMENT.ID = "base" -- normally this is just your filename
|
|
ATTACHMENT.Description = { TFA.AttachmentColors["="], "Ironsights inspired by MMod." }
|
|
ATTACHMENT.Icon = "entities/mmod_si_legacy.png" --Revers to label, please give it an icon though! This should be the path to a png, like "entities/tfa_ammo_match.png"
|
|
ATTACHMENT.ShortName = "LEGACY"
|
|
|
|
ATTACHMENT.WeaponTable = {
|
|
["IronSightsPos"] = function( wep, val ) return wep.IronSightsPos_LEG or val end,
|
|
["IronSightsAng"] = function( wep, val ) return wep.IronSightsAng_LEG or val end,
|
|
["IronSightTime"] = function( wep, val ) return val * 1 end,
|
|
}
|
|
function ATTACHMENT:Attach(wep)
|
|
wep.DrawCrosshairIS = true
|
|
end
|
|
|
|
function ATTACHMENT:Detach(wep)
|
|
wep.DrawCrosshairIS = false
|
|
end
|
|
|
|
if not TFA_ATTACHMENT_ISUPDATING then
|
|
TFAUpdateAttachments()
|
|
end
|