14 lines
294 B
Lua
14 lines
294 B
Lua
|
INC_CLIENT()
|
||
|
|
||
|
SWEP.PrintName = "Extinction Crab"
|
||
|
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
|