zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_freshdead.lua

22 lines
265 B
Lua
Raw Normal View History

2014-10-02 08:49:54 +08:00
AddCSLuaFile()
SWEP.Base = "weapon_zs_zombie"
SWEP.PrintName = "Fresh Dead"
2014-10-02 08:49:54 +08:00
SWEP.MeleeDamage = 20
function SWEP:Reload()
self:SecondaryAttack()
end
function SWEP:StartMoaning()
end
function SWEP:StopMoaning()
end
function SWEP:IsMoaning()
return false
end