Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int Main_menu_choice = 0;
  5. int main()
  6. {
  7. printf("\n");
  8. sleep(1);
  9. printf("Welcome to LinuBot,the World of Warcraft GNU/Linux bot\n");
  10. sleep(1);
  11. printf("Please make your choice in the menu below\n");
  12. sleep(1);
  13. printf("-- Main Menu --\n");
  14. sleep(1);
  15. printf("\n");
  16. printf("1) Leveling\n");
  17. sleep(1);
  18. printf("2) PvP\n");
  19. sleep(1);
  20. printf("3) Gold Farming\n");
  21. sleep(1);
  22. printf("Your choice : \n");
  23. scanf("%d", &Main_menu_choice);
  24. printf("DEBUG : Main_menu_choice = %d\n", Main_menu_choice);
  25. sleep(3);
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement