Hi all!
So, I want to make an entity for findInSphere but this entity would be a particle [blue teleport effect from tf2]
Can I make ?
Have you got any idea?
There is an Effect in a addon called tf2 teleporter on garrysmod.org look it up.
I think he's asking how to find a particle with ents.FindInSphere.
I dont think you can find individual particles, but you can find particleemitters
[lua]
for k, v in pairs(ents.FindInSphere(pos, radius)) do
if v:GetClass() == "info_particle_system" then
//Insert code here
end
end
[/lua]
Oh no wonder i was reading gibberish then.
info_particle_system? hmm
So if there is a particle effect somewhere in your radius then //code?
[editline]2nd December 2010[/editline]
First I want to lua an entity [gamemode entity]
Sorry, you need to Log In to post a reply to this thread.