mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
Upload
This commit is contained in:
62
addons/tfa-base/lua/tfa/att/ar15_magpul_barrel.lua
Normal file
62
addons/tfa-base/lua/tfa/att/ar15_magpul_barrel.lua
Normal file
@@ -0,0 +1,62 @@
|
||||
--[[
|
||||
| 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 = "Magpul Handguard"
|
||||
--ATTACHMENT.ID = "base" -- normally this is just your filename
|
||||
ATTACHMENT.Description = { TFA.AttachmentColors["+"], "60% less vertical recoil", "20% less horizontal recoil", "10% more ironsight accuracy", TFA.AttachmentColors["-"], "20% lower base accuracy" }
|
||||
ATTACHMENT.Icon = "entities/ar15_att_moe_b.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 = "MOEB"
|
||||
|
||||
ATTACHMENT.WeaponTable = {
|
||||
["VElements"] = {
|
||||
["basebarrel"] = {
|
||||
["active"] = false
|
||||
},
|
||||
["magpulbarrel"] = {
|
||||
["active"] = true
|
||||
}
|
||||
},
|
||||
["Bodygroups_W"] = {
|
||||
[2] = 2
|
||||
},
|
||||
["Primary"] = {
|
||||
["KickUp"] = function(wep,stat) return stat * 0.3 end,
|
||||
["KickDown"] = function(wep,stat) return stat * 0.3 end,
|
||||
["KickHorizontal"] = function(wep,stat) return stat * 0.7 end,
|
||||
["Spread"] = function(wep,stat) return stat * 1.1 end,
|
||||
["IronAccuracy"] = function(wep,stat) return stat * 1.1 end
|
||||
},
|
||||
}
|
||||
|
||||
function ATTACHMENT:Attach( wep )
|
||||
if TFA.Enum.ReadyStatus[wep:GetStatus()] then
|
||||
wep:ChooseIdleAnim()
|
||||
if game.SinglePlayer() then
|
||||
wep:CallOnClient("ChooseIdleAnim","")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function ATTACHMENT:Detach( wep )
|
||||
if TFA.Enum.ReadyStatus[wep:GetStatus()] then
|
||||
wep:ChooseIdleAnim()
|
||||
if game.SinglePlayer() then
|
||||
wep:CallOnClient("ChooseIdleAnim","")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if not TFA_ATTACHMENT_ISUPDATING then
|
||||
TFAUpdateAttachments()
|
||||
end
|
||||
Reference in New Issue
Block a user