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

21 lines
399 B
Lua
Raw Normal View History

INC_CLIENT()
2014-10-02 08:49:54 +08:00
SWEP.ViewModelFOV = 70
SWEP.DrawCrosshair = false
function SWEP:Reload()
end
function SWEP:DrawWorldModel()
end
SWEP.DrawWorldModelTranslucent = SWEP.DrawWorldModel
function SWEP:DrawHUD()
if GetConVar("crosshair"):GetInt() ~= 1 then return end
2014-10-02 08:49:54 +08:00
self:DrawCrosshairDot()
end
function SWEP:DrawWeaponSelection(x, y, w, h, alpha)
self:BaseDrawWeaponSelection(x, y, w, h, alpha)
2014-10-02 08:49:54 +08:00
end