I have been using radient for a couple months, but havent messed with having more than one zone. Tired it but here is the problem. I have my 3 zones set up, and spawners are correctly linked to each zone as far as im concermed (spawners are connected to zones by yellow lines). My doors entering each room are set up and work properly, but when i enter the second and third zone, the zombies do not spawn in the second and third zones.
My target/targetnames for the zones are:
"target_name""start_zone"
"target" "start_zone_spawners"
"target_name" "room1_zone"
"target" "room1_zone_spawners"
"target_name" "room2_zone"
"target" "room2_zone_spawners"
I have a script_flag on the door going from the "start_zone" to "room1_zone" which reads:
"script_flag" "enter_room1_zone"
And the same thing leading from "room1_zone" to "room2_zone" which reads:
"script_flag" "enter_room2_zone"
Then also I edited the .gsc file which reads:
dlc3_zone_init()
{
//add_adjacent_zone( "start_zone", "room1_zone", "enter_room1_zone" );
//add_adjacent_zone( "room1_zone", "room2_zone", "enter_room2_zone" );
}
I am completly stumped on what I did wrong, or if I missed something completly!