Skip to content

Instantly share code, notes, and snippets.

@Razzile
Last active January 1, 2016 04:49
Show Gist options
  • Save Razzile/8094033 to your computer and use it in GitHub Desktop.
Save Razzile/8094033 to your computer and use it in GitHub Desktop.
Tweak for Word Scramble that allows you to make any combination of letters and get rewarded heavily for it. Brought to you by Razzile
/**************************************************************
**************************************************************
* Word Scramble Mod
* Allows you to make words from any combination of letters
* You will also earn many more points for scoring a word
* *********************Created by razzile*********************
**************************************************************/
%hook PuzzleGenerator
- (BOOL)isWord:(id)arg {
return YES;
}
- (int)scoreForLetter:(id)arg {
return 99;
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment