Advertisement
Guest User

Untitled

a guest
Jul 15th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. // PRG Servers.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include <stdio.h>
  7. #include <time.h>
  8. #include <dos.h>
  9. #include <windows.h>
  10.  
  11. using namespace std;
  12.  
  13. int main()
  14. {
  15. int x;
  16. cout << endl;
  17. cout << " Please type the number of the server you would like to play." << endl;
  18. cout << " 1) 1v1" << endl;
  19. cout << " 2) FFA" << endl;
  20. cout << " 3) Awp" << endl;
  21. cout << " 4) Bhop" << endl;
  22. cout << " 5) CSurf" << endl;
  23. cout << " 6) RPG" << endl;
  24. cout << " 7) Deable" << endl;
  25. cout << " 8) ScoutzKnives" << endl;
  26. cout << " 9) Ski 24/7" << endl;
  27. cout << " 10) TTT" << endl;
  28. cout << " "; cin >> x;
  29. if (x == 1) {
  30. system("start steam://connect/74.91.113.217:27015");
  31. }
  32. else if (x == 2) {
  33. system("start steam://connect/74.91.125.226:27015");
  34. }
  35. else if (x == 3) {
  36. system("start steam://connect/72.5.195.153:27015");
  37. }
  38. else if (x == 4) {
  39. system("start steam://connect/104.153.108.125:27015");
  40. }
  41. else if (x == 5) {
  42. system("start steam://connect/104.153.108.85:27015");
  43. }
  44. else if (x == 6) {
  45. system("start steam://connect/64.74.97.146:27015");
  46. }
  47. else if (x == 7) {
  48. system("start steam://connect/64.74.97.60:27015");
  49. }
  50. else if (x == 8) {
  51. system("start steam://connect/74.91.124.233:27015");
  52. }
  53. else if (x == 9) {
  54. system("start steam://connect/74.91.122.88:27015");
  55. }
  56. else if (x == 10) {
  57. system("start steam://connect/74.91.122.149:27015");
  58. }
  59. system("CLS");
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement