Advertisement
PrimeNotorious

el c0d3

May 7th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. //by notorious
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace _1._11__Command_Console
  9. {
  10. class CoreCompenent
  11. {
  12.  
  13. public static Player self;
  14. static void Main(string[] args)
  15. {
  16. Console.WriteLine("Welcome to Console Command Version 1.0 For Call of Duty Ghosts! \nDeveloped By: Notorious\n\ntype 'commands' for commands");
  17. string input = Console.ReadLine();
  18. string[] consoleCommand = input.Split(' ');
  19. if (consoleCommand[0] == "connect")
  20. {
  21. if (consoleCommand[1] == "0")
  22. {
  23. try { PS3.Connect(); PS3.Attach(); Console.WriteLine("PS3 Connected"); PS3.DisplayGame(); }
  24. catch { }
  25. Console.ReadLine();
  26. }
  27. }
  28. if (input == "commands")
  29. {
  30. Console.WriteLine("connect <target>\ngod <clientID>\ngod all\nnoClip <clientID> <bool active>\nfov <value>\nuav <bool active>\nreal wallhack <bool active>\nlaser <bool active>\nsteady aim <bool active>\nno recoil <bool active>\nakimbo <bool active>\nspeed <bool active>\njump <bool active>\nfog <bool active>");
  31. Console.ReadLine();//see if i type commands then connect it closes
  32. }
  33. }
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement