Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CounterStrikeSourceZMMA
- {
- class Program
- {
- static void Main(string[] args)
- {
- /*
- **************************
- **************************
- ***By Avengers-Assemble***
- **********MrAlex**********
- *********mcr0yal**********
- */
- Console.ForegroundColor = ConsoleColor.Yellow;
- Console.WriteLine(" ****By Avengers-Assemble****");
- Console.ForegroundColor = ConsoleColor.Green;
- Console.WriteLine(" ***Special thanks to MrAlex & mcr0yal***");
- Console.ForegroundColor = ConsoleColor.Cyan;
- Console.WriteLine();
- Console.WriteLine("Welcome to the Counter-Strike Source Zombie Mode spots advisor");
- for (int i = 0; i >= 0; i++)
- {
- Console.ForegroundColor = ConsoleColor.Cyan;
- if (i != 0)
- Console.WriteLine();
- Console.WriteLine("Please choose one of the followings (type map number):");
- Console.WriteLine("1. zm_ATIX_Apocalypse_b6");
- Console.WriteLine("2. zm_fubar_towers_v4");
- Console.WriteLine("3. ZM_Krusty_krab_a3");
- Console.WriteLine("4. zm_ezir_hacker");
- Console.WriteLine("5. zm_Lila_hacker");
- Console.WriteLine("6. zm_420_beachstrike_HeLL");
- Console.WriteLine("7. zm_4way_tunnel_v2");
- Console.WriteLine("0. exit program");
- int actionNum = int.Parse(Console.ReadLine());
- Console.WriteLine();
- if (actionNum == 1) //zm_ATIX_Apocalypse_b6
- {
- Console.WriteLine("Please choose one of the following evacuations (type evac number):");
- Console.WriteLine("1. Helicopter");
- Console.WriteLine("2. Truck");
- Console.WriteLine("3. Train");
- Console.WriteLine("4. Boat");
- int evacNum = int.Parse(Console.ReadLine());
- if (evacNum == 1)
- {
- Console.WriteLine("Latern/Retreat/White house' rooftop are the best spots.");
- }
- if (evacNum == 2)
- {
- Console.WriteLine("There are two building that contain a door that unlocks after a certain amount of time.");
- Console.WriteLine("These doors lead to a secret room that only humans (CTs) can enter.");
- Console.WriteLine("In that room, there is a glass wall that breaks after a certain amount of time, that glass wall leads directly into the truck.");
- }
- if (evacNum == 3)
- {
- Console.WriteLine("In front of the enterance to the train, there is a building with a breakable door. Get to the top floor of that building.");
- Console.WriteLine("Otherwise, go to retreat (heli spot), there is a secret enterance to the train there, placed behind the big truck.");
- }
- if (evacNum == 4)
- {
- Console.WriteLine("White house/building in front of train");
- }
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 2) //zm_fubar_towers_v4
- {
- Console.WriteLine("Sky/disco (not a good spot if some of the zombies (Ts) know about the teleport to the disco)");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 3) //ZM_Krusty_krab_a3
- {
- Console.WriteLine("This map has many teleports and secrets, most of which are useless. However, there are a few useful ones. One of them leads to a secret room, which is a great place to camp with 2 friends with LMGs.");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 4) //zm_ezir_hacker
- {
- Console.WriteLine("Sniping spot/breakable blocks room (need to use a certain strategy)/breakable floor platform.");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 5) //zm_Lila_hacker
- {
- Console.WriteLine("This map is almost identical to zm_ezir_hacker (though it has less secrets and it's harder to use its teleports), thus the recommendations are the same as those for zm_ezir_hacker.");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 6) //zm_420_beachstrike_HeLL
- {
- Console.WriteLine("Rocks (greatly OP spot)/arrow/secret sky bridge (takes time to block so it's a risk, but if you do manage to block it in time, it's almost impossible to get you.");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 7) //zm_4way_tunnel_v2
- {
- Console.WriteLine("Many places in this map are good if you have 5+ players with you, but the room with sealable doors and air vents is best if you are only 1-3 guys.");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine();
- Console.WriteLine("Press any key to choose another map.");
- Console.ReadLine();
- }
- if (actionNum == 0) //exit program
- {
- Console.WriteLine("Are you sure you would like to close the program?");
- Console.WriteLine("y / n");
- string yesNo = Console.ReadLine();
- Console.ForegroundColor = ConsoleColor.White;
- if (yesNo == "y")
- {
- Console.WriteLine("Press any key to cause the program to crash");
- Console.ReadLine();
- Console.WriteLine(1 / actionNum);
- }
- if (yesNo == "n")
- {
- Console.WriteLine("Press any key to go back to the main menu.");
- Console.ReadLine();
- Console.WriteLine();
- }
- }
- if (actionNum < 0 || actionNum > 7)
- {
- Console.WriteLine("Invalid number. Please choose a number between 0 to 7");
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine("Press any key to go back to choose again.");
- Console.ReadLine();
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement