Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdlib.h>
- void cracked();
- int checkCDKey(char* key);
- int main()
- {
- cracked();
- if (checkCDKey("MeinKey") == 1)
- {
- puts("No godmode scorpions.");
- }
- else
- {
- puts("Unleash the unkillable scorpions.");
- puts("You will die filthy pirate");
- }
- return (EXIT_SUCCESS);
- }
- int checkCDKey(char* key)
- {
- return (0);
- }
- void cracked()
- {
- if (checkCDKey("MeinKey") == 1)
- {
- puts("Thanks for buying the game");
- }
- }
Add Comment
Please, Sign In to add comment