mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
44 lines
1.6 KiB
Lua
44 lines
1.6 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 = "APC"
|
|
ENT.Author = "Comrade Communist"
|
|
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 = "Military"
|
|
|
|
if (CLIENT) then
|
|
local Name = "APC"
|
|
local LangName = "npc_hl2_apc_rocket"
|
|
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_mili_tiger_shooteffects", function()
|
|
local ent = net.ReadEntity()
|
|
if ent:IsValid() then
|
|
ent.Emitter = ParticleEmitter(ent:GetPos())
|
|
ent.SmokeEffect2 = ent.Emitter:Add("particles/smokey",ent:GetPos() +ent:GetForward()*-230 +ent:GetRight()*0 +ent:GetUp()*66)
|
|
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) |