hi, i've a very particular problem... that isn't my first map, but i don't know why my zombies spawns in random rooms. help me please, i don't know what to do!?
You have a very complex zoning system:D Did you check all the triggers for typos? Try to find out which trigger causes to spawn zombies in zones that shouldn't be active.
EDIT: for inserting pictures directly use another platform than mediafire, where you can view the blank image (for example imgur or photobucket). Via mediafire you can't view the image directly and therefore can't link it directly.
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
and etcetera. Post Merge: April 29, 2014, 08:23:58 pmBasically no two flags can be the same.
Yes they can be the same, I've done that many times before with zones if there are two doors that lead to the same place you want them to activate the same flag.
i don't think it matters if both triggers go into the same zone. If i remember right the script assumes that wherever the notify comes from is an opened zone, so something like:
sorry, i've don't answered quickly but in italy was late and i've gone to sleep after posting that... however with that scrip zombies spawns only in te first room
sorry, i've don't answered quickly but in italy was late and i've gone to sleep after posting that... however with that scrip zombies spawns only in te first room dlc3_zone_init() { add_adjacent_zone( "initial_zone", "2a_zone", "enter_2a_zone_from_initial_zone" ); add_adjacent_zone( "initial_zone", "2b_zone", "enter_2b_zone_from_initial_zone" ); add_adjacent_zone( "2a_zone", "3_zone", "enter_3_zone_from_2a_zone" ); add_adjacent_zone( "2b_zone", "3_zone", "enter_3_zone_from_2b_zone" ); add_adjacent_zone( "2a_zone", "g_zone", "enter_g_zone_from_2a_zone" ); add_adjacent_zone( "2b_zone", "g_zone", "enter_g_zone_from_2b_zone" ); add_adjacent_zone( "g_zone", "2a_zone", "enter_2a_zone_from_g_zone" ); add_adjacent_zone( "g_zone", "2b_zone", "enter_2b_zone_from_g_zone" ); add_adjacent_zone( "g_zone", "6_zone", "enter_6_zone" ); add_adjacent_zone( "3_zone", "2a_zone", "enter_2a_zone_from_3_zone" ); add_adjacent_zone( "3_zone", "2b_zone", "enter_2b_zone_from_3_zone" ); /* trigger use of the doors are perfect... i don't know where is the issue...
hi, i've a very particular problem... that isn't my first map, but i don't know why my zombies spawns in random rooms. help me please, i don't know what to do!?
i made that image for explain the map structure... but i haven't understand how post it dirctly xD.... i'm very sorry, if someone can post it under i will very happy
From the looks of it the zombies are not spawning in random rooms, you have almost opened the whole map when you enter 2a_zone. It opens zones 2a_zone, g_zone, and 3_zone. You clarify which is adjacent to which but all of those are open now and will spawn up to 2 or 3 adjacent zones away from the zone you are currently in. Your entire map is open except for 6_zone and 2b_zone at this point. You had two g_zone's which I didn't fully understand so I'll just assume they are open to each other, and I couldn't tell if you could get to 3_zone from g_zone freely or not so...
I do things slightly different. I don't use flags like "enter_this_zone". I use flags like "this_connects_that". If interested, this is how I do zoning:
Then I set the flag for each trigger (in my map) on my buyable debris or doors to the connection of the zones. Meaning, anywhere two zones connect, put the flag you have previously defined there (defined by unique path), on both sides of the door, if you have triggers on both sides. 6_zone wouldn't since there appears to be only one way in.
[/list][/list][/list]
Spoiler: click to open...
I don't think you have to do the opposite path or define which comes from where since there is an optional <one way> argument that defaults to false. I assume that means it considers all adjacent's 2-way. I could be wrong, I'm pretty new to this. I haven't had any zoning issues since I starting following this method, and I have 15 zones in my current map.
Edit: updated add_adjacent_zone typos
Last Edit: April 30, 2014, 01:43:38 pm by MakeCents