SenpaiSilver

isitcracked

Nov 21st, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.45 KB | None | 0 0
  1. #include <stdlib.h>
  2.  
  3. void cracked();
  4. int checkCDKey(char* key);
  5.  
  6. int main()
  7. {
  8.     cracked();
  9.     if (checkCDKey("MeinKey") == 1)
  10.     {
  11.         puts("No godmode scorpions.");
  12.     }
  13.     else
  14.     {
  15.         puts("Unleash the unkillable scorpions.");
  16.         puts("You will die filthy pirate");
  17.     }
  18.     return (EXIT_SUCCESS);
  19. }
  20.  
  21. int checkCDKey(char* key)
  22. {
  23.     return (0);
  24. }
  25.  
  26. void cracked()
  27. {
  28.     if (checkCDKey("MeinKey") == 1)
  29.     {
  30.         puts("Thanks for buying the game");
  31.     }
  32. }
Add Comment
Please, Sign In to add comment