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

13 lines
287 B
Lua

INC_CLIENT()
SWEP.PrintName = "Headcrab"
SWEP.DrawCrosshair = false
function SWEP:DrawHUD()
if GetConVar("crosshair"):GetInt() ~= 1 then return end
self:DrawCrosshairDot()
end
function SWEP:DrawWeaponSelection(x, y, w, h, alpha)
self:BaseDrawWeaponSelection(x, y, w, h, alpha)
end