PDA

View Full Version : Many triggers with same name



Mariusz
15th January 2018, 15:42
How to specify many triggers with the same name?

Lonsofore
15th January 2018, 15:45
getEntArray?

Mariusz
15th January 2018, 16:22
I think so, but it's not enough. Either I have a misspeling or entity demands changing though.
Are capitals or space have signification?

serthy
16th January 2018, 11:01
You can print all entities in your map and check:



ents = GetEntArray();
for( i = 0 ; i < ents.size ; i++ ) {
e = ents[ i ];
IPrintLn( i + ": " + e.targetname + " at " + e.origin );
}