-
Posts
1,190 -
Joined
-
Last visited
Everything posted by Juku
-
cus u got ebola
-
Interesting!
-
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
oh. Just checked, the plist is there ;-; -
Damnnnnn sick!
-
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
doesnt it get created automatically? -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
oh, so what do you mean? -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
The game doesn't crash. It just doesn't do anything lol -
Save Game Stagehand: A Reverse Platformer (All Versions) +2
Juku replied to Joka's topic in Save Game Cheats
damn tough luck!! -
Nice one
-
Save Game Stagehand: A Reverse Platformer (All Versions) +2
Juku replied to Joka's topic in Save Game Cheats
Nice one -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
yes -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Adds instead of subtracting.</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.postknightgaius</string> <key>key</key> <string>skillpoints</string> <key>label</key> <string>Unlimited Skill Points</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Earn some, then it will become an extremely high amount</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.postknightgaius</string> <key>key</key> <string>diamonds</string> <key>label</key> <string>Unlimited Diamonds</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Earn some, then it will become an extremely high amount</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.postknightgaius</string> <key>key</key> <string>coins</string> <key>label</key> <string>Unlimited Coins</string> </dict> <dict> <key>cell</key> <string>PSTextCell</string> <key>label</key> <string>Made by Gaius.</string> </dict> <dict> <key>action</key> <string>link</string> <key>cell</key> <string>PSButtonCell</string> <key>icon</key> <string>[email protected]</string> <key>label</key> <string>Visit iOSGods.com</string> </dict> </array> <key>title</key> <string>Postknight Cheats</string> </dict> </plist> I made my hack autolipo too ;-;, while installing it says something about postinst error on line1, but it still installs. But idk I must hve done something wrong. -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
the one located in resources in your project folder? -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
alrighty. /* Generated using http://armconverter.com/codeinjectgenerator/ */ /* To MSHook Offsets, use http://armconverter.com/mshookgenerator/ */ #import "writeData.h" #import <Foundation/Foundation.h> #import <substrate.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.iosgods.postknightgaius.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"skillpoints")) { writeData(0xoffset, 0xhex); } else { } if(GetPrefBool(@"diamonds")) { writeData(0xoffset, 0xhex); writeData(0xoffset, 0xhex); } else { } if(GetPrefBool(@"coins")) { writeData(0xoffset, 0xhex); writeData(0xoffset, 0xhex); } else { } } I'm using thumb hex for the hex because it was all 2 byte. And for offset I'm using the one you'd type in in a hex editor. I've tried the one next to the instructions too. -
Help/Support Patcher showing up in settings, but not working ingame..
Juku replied to Juku's topic in Help & Support
hahaha oops lol. Changed -
Hold on. I messed up the
-
Hello. I've been trying to make an autolipo patcher for 2 days but have been encountering many problems. I am going to restart. Firstly I will list my tweak.xm and my plist and I'd like to know if there is anything wrong with them before I continue. Tweak.xm: /* Generated using http://armconverter.com/codeinjectgenerator/ *//* To MSHook Offsets, use http://armconverter.com/mshookgenerator/ */#import "writeData.h"#import <Foundation/Foundation.h>#import <substrate.h>#define PLIST_PATH @"/var/mobile/Library/Preferences/com.iosgods.postknightgaius.plist"inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];}%ctor { if(GetPrefBool(@"skillpoints")) { writeData(0xoffset, 0xhex); } else {} if(GetPrefBool(@"diamonds")) { writeData(0xoffset, 0xhex); writeData(0xoffset, 0xhex); } else {} if(GetPrefBool(@"coins")) { writeData(offset, 0xhex); writeData(offset, 0xhex); } else {}} My plist: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Adds instead of subtracting.</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.postknightgaius</string> <key>key</key> <string>skillpoints</string> <key>label</key> <string>Unlimited Skill Points</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Earn some, then it will become an extremely high amount</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.postknightgaius</string> <key>key</key> <string>diamonds</string> <key>label</key> <string>Unlimited Diamonds</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Earn some, then it will become an extremely high amount</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.postknightgaius</string> <key>key</key> <string>coins</string> <key>label</key> <string>Unlimited Coins</string> </dict> <dict> <key>cell</key> <string>PSTextCell</string> <key>label</key> <string>Made by Gaius.</string> </dict> <dict> <key>action</key> <string>link</string> <key>cell</key> <string>PSButtonCell</string> <key>icon</key> <string>[email protected]</string> <key>label</key> <string>Visit iOSGods.com</string> </dict> </array> <key>title</key> <string>Postknight Cheats</string> </dict> </plist> Thanks.
-
I have the exact same error ;(... Same happens to me
-
Beautiful