mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
44 lines
1.1 KiB
Lua
44 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/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
att.PrintName = "GEN3 Homeboy Slide"
|
||
|
|
att.AbbrevName = "Homeboy Slide"
|
||
|
|
|
||
|
|
if GetConVar("arccw_truenames"):GetBool() then
|
||
|
|
att.PrintName = "G17 NyteSite Slide"
|
||
|
|
end
|
||
|
|
|
||
|
|
att.Icon = Material("entities/att/acwatt_ud_glock_slide_nytesyte.png", "smooth mips")
|
||
|
|
att.Description = "Be the first in the hood to have the HoMeBoY brand Night Sights installed on your New-Model Glock!"
|
||
|
|
att.Desc_Pros = {
|
||
|
|
}
|
||
|
|
att.Desc_Cons = {
|
||
|
|
}
|
||
|
|
att.Desc_Neutrals = {
|
||
|
|
"ud.glock.nytesyte.1",
|
||
|
|
"ud.glock.nytesyte.2",
|
||
|
|
}
|
||
|
|
att.Slot = "ud_glock_slide"
|
||
|
|
|
||
|
|
att.AutoStats = true
|
||
|
|
|
||
|
|
att.ActivateElements = {"ud_glock_slide_nytesyte"}
|
||
|
|
|
||
|
|
att.O_Hook_Override_RecoilDirection = function(wep, data)
|
||
|
|
if wep:GetState() == ArcCW.STATE_SIGHTS then
|
||
|
|
return {current = Angle(0, -1, 0)}
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
att.O_Hook_Override_RecoilDirectionSide = function(wep, data)
|
||
|
|
if wep:GetState() == ArcCW.STATE_SIGHTS then
|
||
|
|
return {current = Angle(1, 0, 0)}
|
||
|
|
end
|
||
|
|
end
|