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

73 lines
1.5 KiB
Lua

INC_SERVER()
function SWEP:Deploy()
gamemode.Call("WeaponDeployed", self:GetOwner(), self)
self.IdleAnimation = CurTime() + self:SequenceDuration()
self:SpawnGhost()
return true
end
function SWEP:OnRemove()
self:RemoveGhost()
end
function SWEP:Holster()
self:RemoveGhost()
return true
end
function SWEP:SpawnGhost()
local owner = self:GetOwner()
if owner and owner:IsValid() then
owner:GiveStatus(self.GhostStatus)
end
end
function SWEP:RemoveGhost()
local owner = self:GetOwner()
if owner and owner:IsValid() then
owner:RemoveStatus(self.GhostStatus, false, true)
end
end
function SWEP:PrimaryAttack()
if not self:CanPrimaryAttack() then return end
local owner = self:GetOwner()
local status = owner:GetStatus(self.GhostStatus)
if not (status and status:IsValid()) then return end
status:RecalculateValidity()
if not status:GetValidPlacement() then return end
local pos, ang = status:RecalculateValidity()
if not pos or not ang then return end
self:SetNextPrimaryAttack(CurTime() + self.Primary.Delay)
local ent = ents.Create(self.DeployClass)
if ent:IsValid() then
ent:SetPos(pos)
ent:SetAngles(ang)
ent.PreOwn = owner
ent:Spawn()
ent:SetObjectOwner(owner)
ent:EmitSound("npc/dog/dog_servo12.wav")
self:TakePrimaryAmmo(1)
local stored = owner:PopPackedItem(ent:GetClass())
if stored then
ent:SetObjectHealth(stored[1])
end
if self:GetPrimaryAmmoCount() <= 0 then
owner:StripWeapon(self:GetClass())
end
end
end