zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_wraith/cl_init.lua

28 lines
580 B
Lua
Raw Normal View History

INC_CLIENT()
2014-10-02 08:49:54 +08:00
SWEP.ViewModelFOV = 47
--[[function SWEP:Holster()
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)
self:GetOwner():CallZombieFunction0("PrePlayerDraw")
2014-10-02 08:49:54 +08:00
end
function SWEP:PostDrawViewModel(vm)
self:GetOwner():CallZombieFunction0("PostPlayerDraw")
2014-10-02 08:49:54 +08:00
end
--[[function SWEP:Think()
self.BaseClass.Think(self)
if self:GetOwner():IsValid() and MySelf == self:GetOwner() then
2014-10-02 08:49:54 +08:00
self:BarricadeGhostingThink()
end
end]]