ill try this but do zones have any special kvps that could narrow this down by doing something like this
Code Snippet
Plaintext
zones = GetEntArray("info_volume", "classname");
for(i = 0; i < zones.size; i++) { if(zones[i].key == "specified_key") { IPrintLN("Found zone with key: " + zones[i].key); } }
or are all info_volumes zones (sorry about any noob question dont really know much about zones)
They are all zones. Each one just controls its own spawners for the area.
The only zone that i can find the script is the initial spawn zone called "center_building_upstairs". The names for the others are probably be somewhere in the scripts. Alternatively, you can print the targetnames and script_noteworthy for each zone using iprintln.
They are all zones. Each one just controls its own spawners for the area.
The only zone that i can find the script is the initial spawn zone called "center_building_upstairs". The names for the others are probably be somewhere in the scripts. Alternatively, you can print the targetnames and script_noteworthy for each zone using iprintln.
im a gonna try this now and thanks for the help Double Post Merge: May 13, 2015, 03:02:35 am
They are all zones. Each one just controls its own spawners for the area.
The only zone that i can find the script is the initial spawn zone called "center_building_upstairs". The names for the others are probably be somewhere in the scripts. Alternatively, you can print the targetnames and script_noteworthy for each zone using iprintln.
right i think i found the right zone name but how would i go about activating it (yet again this might be another noob question)