zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_grenade/cl_init.lua
2014-10-01 20:49:54 -04:00

21 lines
479 B
Lua

include("shared.lua")
SWEP.PrintName = "Grenade"
SWEP.Description = "A simple fragmentation grenade.\nWhen used in the right conditions, it can obliterate groups of zombies."
SWEP.ViewModelFOV = 60
SWEP.Slot = 4
SWEP.SlotPos = 0
--[[function SWEP:GetViewModelPosition(pos, ang)
if self:GetPrimaryAmmoCount() <= 0 then
return pos + ang:Forward() * -256, ang
end
return pos, ang
end]]
function SWEP:DrawWeaponSelection(...)
return self:BaseDrawWeaponSelection(...)
end