Last active
January 1, 2016 04:49
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************** | |
************************************************************** | |
* 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