mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
44 lines
1.7 KiB
Lua
44 lines
1.7 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/
|
|
--]]
|
|
|
|
ENT.Base = "npc_vj_tankg_base"
|
|
ENT.Type = "ai"
|
|
ENT.PrintName = "M2A3 Bradley"
|
|
ENT.Author = "DrVrej"
|
|
ENT.Contact = "http://steamcommunity.com/groups/vrejgaming"
|
|
ENT.Purpose = "Spawn it and fight with it!"
|
|
ENT.Instructions = "Click on the spawnicon to spawn it."
|
|
ENT.Category = "Half-Life Resurgence"
|
|
|
|
if CLIENT then
|
|
local Name = "M2A3 Bradley"
|
|
local LangName = "npc_vj_hlr1_m2a3bradley_gun"
|
|
language.Add(LangName, Name)
|
|
killicon.Add(LangName,"HUD/killicons/default",Color(255,80,0,255))
|
|
language.Add("#"..LangName, Name)
|
|
killicon.Add("#"..LangName,"HUD/killicons/default",Color(255,80,0,255))
|
|
end
|
|
---------------------------------------------------------------------------------------------------------------------------------------------
|
|
net.Receive("vj_hlr1_m2a3bradleyg_shooteffects", function()
|
|
local ent = net.ReadEntity()
|
|
if IsValid(ent) then
|
|
ent.Emitter = ParticleEmitter(ent:GetPos())
|
|
ent.SmokeEffect2 = ent.Emitter:Add("particles/smokey", ent:GetPos() + ent:GetForward()*80 + ent:GetUp()*10)
|
|
ent.SmokeEffect2:SetVelocity(ent:GetForward()*math.Rand(0,-50) + Vector(0,-30,math.Rand(-10,-20)) + ent:GetVelocity())
|
|
ent.SmokeEffect2:SetDieTime(2)
|
|
ent.SmokeEffect2:SetStartAlpha(30)
|
|
ent.SmokeEffect2:SetEndAlpha(0)
|
|
ent.SmokeEffect2:SetStartSize(3)
|
|
ent.SmokeEffect2:SetEndSize(50)
|
|
ent.SmokeEffect2:SetRoll(math.Rand(-0.2,0.2))
|
|
ent.SmokeEffect2:SetColor(150,150,150,255)
|
|
ent.Emitter:Finish()
|
|
end
|
|
end) |