2018-05-02 06:32:59 +08:00
|
|
|
INC_CLIENT()
|
2014-10-02 08:49:54 +08:00
|
|
|
|
|
|
|
SWEP.ViewModelFOV = 47
|
|
|
|
|
|
|
|
--[[function SWEP:Holster()
|
2018-05-02 06:32:59 +08:00
|
|
|
if self:GetOwner():IsValid() and self:GetOwner() == MySelf then
|
|
|
|
self:GetOwner():SetBarricadeGhosting(false)
|
2014-10-02 08:49:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return self.BaseClass.Holster(self)
|
|
|
|
end]]
|
|
|
|
|
|
|
|
function SWEP:PreDrawViewModel(vm)
|
2018-05-02 06:32:59 +08:00
|
|
|
self:GetOwner():CallZombieFunction0("PrePlayerDraw")
|
2014-10-02 08:49:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function SWEP:PostDrawViewModel(vm)
|
2018-05-02 06:32:59 +08:00
|
|
|
self:GetOwner():CallZombieFunction0("PostPlayerDraw")
|
2014-10-02 08:49:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
--[[function SWEP:Think()
|
|
|
|
self.BaseClass.Think(self)
|
|
|
|
|
2018-05-02 06:32:59 +08:00
|
|
|
if self:GetOwner():IsValid() and MySelf == self:GetOwner() then
|
2014-10-02 08:49:54 +08:00
|
|
|
self:BarricadeGhostingThink()
|
|
|
|
end
|
|
|
|
end]]
|