zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_wraith/cl_init.lua
William Moodhe e9da54c2f9 ZS updates for 2014-2018
Too many changes to list.
2018-05-01 18:32:59 -04:00

27 lines
580 B
Lua

INC_CLIENT()
SWEP.ViewModelFOV = 47
--[[function SWEP:Holster()
if self:GetOwner():IsValid() and self:GetOwner() == MySelf then
self:GetOwner():SetBarricadeGhosting(false)
end
return self.BaseClass.Holster(self)
end]]
function SWEP:PreDrawViewModel(vm)
self:GetOwner():CallZombieFunction0("PrePlayerDraw")
end
function SWEP:PostDrawViewModel(vm)
self:GetOwner():CallZombieFunction0("PostPlayerDraw")
end
--[[function SWEP:Think()
self.BaseClass.Think(self)
if self:GetOwner():IsValid() and MySelf == self:GetOwner() then
self:BarricadeGhostingThink()
end
end]]