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.
Like what? Mapping is pretty much complete, and the ugx mod is on the map so theres not much more to do. Got any ideas? I can possibly make it happen.
lets see.... how about.. OH I KNOW!! okay so there will be an under ground nuclear bomb shelter (looks like this: https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQt0air3VAXGQAneNkFvR9S5TovEaOy6VTHAR3K-2RH3R4yqA1UYg you open it for 500. once you get down there, there will be a big red button that says "drop tactical nuke" and it will cost 2750. once you buy it, the door to enter the shelter immediatly shuts and you here the sound of a bomb dropping. when you hear the sound of the explosion, the whole map shakes for a couple seconds. 60 seconds after, the door opens, all the zombies are dead, and there is a green and black fog around the whole map for the next 3 minutes. if a teammate is outside of the shelter when you push the button, he dies instantly (no revive) lastly, in the shelter, there will be copies of all the guns on the wall, all the perk machines, the "?" box, and the PaP but they will cost more. (example: "?" box costs 1950, PaP costs 7500, jug costs 4000, etc) THAT WOULD BE SICK
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.
This map is coming to an end. An addition to my map includes different visions for the different gamemodes.
For example, in the original game mode, the vision is black and white (Like Black ops ascension), and when the power is turned on, the vision changes to normal. But for the other 4 game modes, the vision when spawned in is normal.
I have a script, very basic one, which I wrote to control what i explained above, which is:
Code Snippet
Plaintext
colour() // Scripted so that only have vision change when power is turned on in Normal mode only { flag_wait( "all_players_connected" ); if(level.ugxm_settings["gamemode"] == 1) { set_all_players_visionset( "zombie_factory", 0.1 ); } else if(level.ugxm_settings["gamemode"] == 2) { set_all_players_visionset( "zombie_factory", 0.1 ); } else if(level.ugxm_settings["gamemode"] == 3) { set_all_players_visionset( "zombie_factory", 0.1 ); } else if(level.ugxm_settings["gamemode"] == 4) { set_all_players_visionset( "zombie_factory", 0.1 ); } else { set_all_players_visionset( "_bw", 0.1 ); thread power_vision(); } }
Now the problem is, when I die in solo, the map restarts. When the map is restarted, no matter what game mode it is, I spawn in with no vision set, and the map looks ugly AF. XD So I'd like to keep the same control as explained above when you die, and the map is automatically restarted.
So what i tried to do is make it so when the players touch a trigger_multiple (It covers the whole map), their vision is set, and the vision set is based on what game mode is being played. HOWEVER, the script does not work, which means I cannot script for shit, or it won't work this way.
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.
This works, however, as in the script it says if the gamemode isn't any of the 4 (Which is original) the vision will be '_bw', but instead, it goes to the vision of zombie_factory. ;_;