mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
138 lines
3.1 KiB
Lua
138 lines
3.1 KiB
Lua
|
|
--[[
|
||
|
|
| This file was obtained through the combined efforts
|
||
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
||
|
|
|
|
||
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
||
|
|
|
|
||
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
AddCSLuaFile()
|
||
|
|
|
||
|
|
SWEP.HoldType = "normal"
|
||
|
|
|
||
|
|
if CLIENT then
|
||
|
|
SWEP.PrintName = "hstation_name"
|
||
|
|
SWEP.Slot = 6
|
||
|
|
|
||
|
|
SWEP.ViewModelFOV = 10
|
||
|
|
SWEP.DrawCrosshair = false
|
||
|
|
|
||
|
|
SWEP.EquipMenuData = {
|
||
|
|
type = "item_weapon",
|
||
|
|
desc = "hstation_desc"
|
||
|
|
};
|
||
|
|
|
||
|
|
SWEP.Icon = "vgui/ttt/icon_health"
|
||
|
|
end
|
||
|
|
|
||
|
|
SWEP.Base = "weapon_tttbase"
|
||
|
|
|
||
|
|
SWEP.ViewModel = "models/weapons/v_crowbar.mdl"
|
||
|
|
SWEP.WorldModel = "models/props/cs_office/microwave.mdl"
|
||
|
|
|
||
|
|
SWEP.Primary.ClipSize = -1
|
||
|
|
SWEP.Primary.DefaultClip = -1
|
||
|
|
SWEP.Primary.Automatic = true
|
||
|
|
SWEP.Primary.Ammo = "none"
|
||
|
|
SWEP.Primary.Delay = 1.0
|
||
|
|
|
||
|
|
SWEP.Secondary.ClipSize = -1
|
||
|
|
SWEP.Secondary.DefaultClip = -1
|
||
|
|
SWEP.Secondary.Automatic = true
|
||
|
|
SWEP.Secondary.Ammo = "none"
|
||
|
|
SWEP.Secondary.Delay = 1.0
|
||
|
|
|
||
|
|
-- This is special equipment
|
||
|
|
SWEP.Kind = WEAPON_EQUIP
|
||
|
|
SWEP.CanBuy = {ROLE_DETECTIVE} -- only detectives can buy
|
||
|
|
SWEP.LimitedStock = true -- only buyable once
|
||
|
|
SWEP.WeaponID = AMMO_HEALTHSTATION
|
||
|
|
|
||
|
|
SWEP.AllowDrop = false
|
||
|
|
SWEP.NoSights = true
|
||
|
|
|
||
|
|
function SWEP:OnDrop()
|
||
|
|
self:Remove()
|
||
|
|
end
|
||
|
|
|
||
|
|
function SWEP:PrimaryAttack()
|
||
|
|
self:SetNextPrimaryFire( CurTime() + self.Primary.Delay )
|
||
|
|
self:HealthDrop()
|
||
|
|
end
|
||
|
|
function SWEP:SecondaryAttack()
|
||
|
|
self:SetNextSecondaryFire( CurTime() + self.Secondary.Delay )
|
||
|
|
self:HealthDrop()
|
||
|
|
end
|
||
|
|
|
||
|
|
local throwsound = Sound( "Weapon_SLAM.SatchelThrow" )
|
||
|
|
|
||
|
|
-- ye olde droppe code
|
||
|
|
function SWEP:HealthDrop()
|
||
|
|
if SERVER then
|
||
|
|
local ply = self:GetOwner()
|
||
|
|
if not IsValid(ply) then return end
|
||
|
|
|
||
|
|
if self.Planted then return end
|
||
|
|
|
||
|
|
local vsrc = ply:GetShootPos()
|
||
|
|
local vang = ply:GetAimVector()
|
||
|
|
local vvel = ply:GetVelocity()
|
||
|
|
|
||
|
|
local vthrow = vvel + vang * 200
|
||
|
|
|
||
|
|
local health = ents.Create("ttt_health_station")
|
||
|
|
if IsValid(health) then
|
||
|
|
health:SetPos(vsrc + vang * 10)
|
||
|
|
health:Spawn()
|
||
|
|
|
||
|
|
health:SetPlacer(ply)
|
||
|
|
|
||
|
|
health:PhysWake()
|
||
|
|
local phys = health:GetPhysicsObject()
|
||
|
|
if IsValid(phys) then
|
||
|
|
phys:SetVelocity(vthrow)
|
||
|
|
end
|
||
|
|
self:Remove()
|
||
|
|
|
||
|
|
self.Planted = true
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
self:EmitSound(throwsound)
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
function SWEP:Reload()
|
||
|
|
return false
|
||
|
|
end
|
||
|
|
|
||
|
|
function SWEP:OnRemove()
|
||
|
|
if CLIENT and IsValid(self:GetOwner()) and self:GetOwner() == LocalPlayer() and self:GetOwner():Alive() then
|
||
|
|
RunConsoleCommand("lastinv")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
if CLIENT then
|
||
|
|
function SWEP:Initialize()
|
||
|
|
self:AddHUDHelp("hstation_help", nil, true)
|
||
|
|
|
||
|
|
return self.BaseClass.Initialize(self)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function SWEP:Deploy()
|
||
|
|
if SERVER and IsValid(self:GetOwner()) then
|
||
|
|
self:GetOwner():DrawViewModel(false)
|
||
|
|
end
|
||
|
|
return true
|
||
|
|
end
|
||
|
|
|
||
|
|
function SWEP:DrawWorldModel()
|
||
|
|
end
|
||
|
|
|
||
|
|
function SWEP:DrawWorldModelTranslucent()
|
||
|
|
end
|
||
|
|
|