Here is a SQL script to unlock all the paid content in Where's My Water? for free.
All you need to do is open water.db in a SQL editor, like DB Browser, then run this script.
Here is a SQL script to unlock all the paid content in Where's My Water? for free.
All you need to do is open water.db in a SQL editor, like DB Browser, then run this script.
| -- Buy all the stories | |
| UPDATE HubInfo SET Bought = 1; | |
| -- Make every level available | |
| UPDATE LevelInfo SET Available = 1; | |
| -- Buy all the level packs | |
| UPDATE LevelPackInfo SET Bought = 1; | |
| -- Make all the challenges available | |
| UPDATE AllieChallengeInfo SET Available = 1; | |
| UPDATE CrankyChallengeInfo SET Available = 1; | |
| -- Set some player data for convenience | |
| ---- EDOB - Age | |
| UPDATE PlayerData SET EventValue = 1 WHERE EventName IN ('EDOB','AlliePackViewed'); | |
| ---- RateMePromptEligible (to remove the annoying rate me prompt) | |
| UPDATE PlayerData SET EventValue = 0 WHERE EventName = 'RateMePromptEligible'; |