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

23 lines
309 B
Lua

AddCSLuaFile()
SWEP.Base = "weapon_zs_zombie"
SWEP.MeleeDelay = 0.25
SWEP.MeleeReach = 40
SWEP.MeleeDamage = 25
SWEP.DelayWhenDeployed = true
function SWEP:Reload()
self:SecondaryAttack()
end
function SWEP:StartMoaning()
end
function SWEP:StopMoaning()
end
function SWEP:IsMoaning()
return false
end