Ok so first off i looked everywhere for this but i cant find an answer so this is what i have i got a door with script_flag "enter_zone2"
i also have the start_zone and zone2 set up like every video i have looked at and when i access the gsc file to configure i put this down in the right location function usermap_test_zone_init() { zm_zonemgr::add_adjacent_zone( "start_zone", "zone2", "enter_zone2" );
}
what am i missing i run the game and can open the door but i keep dying while walking in!?? any solutions also this first time making map so give me a little slack
Hello! I'm new here, but as I was developing a map I'm working on, I found that the tutorials available, even though I followed them perfectly, didn't give me the result I needed. I continued to die when entering the zone and I was pulling my hair out.
Under function main()
There is an aray - you need to manually add your zones in there, giving them a unique number too. Once you've added them to this array, you also need to do the adjacent tiles (so zombies spawn where you need them spawn).
Hello! I'm new here, but as I was developing a map I'm working on, I found that the tutorials available, even though I followed them perfectly, didn't give me the result I needed. I continued to die when entering the zone and I was pulling my hair out.
Under function main()
There is an aray - you need to manually add your zones in there, giving them a unique number too. Once you've added them to this array, you also need to do the adjacent tiles (so zombies spawn where you need them spawn).
Just so you're aware, if you do this, all of these zones will become active at the start of the game, allowing zombies to spawn in unopened areas.
Really? I haven't had this problem. I had a problem where by even if the zones were touching, none but the start_zone (which is included in the array) was working and I would die instantly when entering the additional zone.
When I added them, it was fine - The zombies spawned where I wanted them to spawn and each zone became active when I bought/activated the zone I was trying to.
The exception to this, was that Risers targeting flesh would spawn in zones that I didn't want active and I ended up changing my map to accommodate this, as I couldn't figure out why. Perhaps this is why? But it still doesn't explain the zombies targeting windows working.