View Single Post
Author Message
spacepoi
New Member
Join Date: Feb 2019
Old 02-12-2019 , 09:29   Help with function PostSpawn for point_template
Reply With Quote #1

I write vscript with squirrel for csgo.
I want to use this function without flag, "Preserve entity names".
I write script but it dont work.
I think "Entities.FindByName(null,"path1")" on the second line is not appropriate.
I only can find example on
https://developer.valvesoftware.com/...CPointTemplate
How to fix this?
Thanks in advance.

=============================
tbl <- {
path1 = Entities.FindByName(null,"path1"),
path2 = Entities.FindByName(null,"path2")
}

function PostSpawn( tbl )
{
foreach( name, handle in tbl )
{
printl( name + ": " + handle )
}
}
spacepoi is offline