-
Posts
1,223 -
Joined
-
Last visited
Everything posted by Mayaxaya
-
Introduction Shhhhhh i'm not really here *meow*
Mayaxaya replied to ninjacatt's topic in Member Introductions
plain superiority complex welcome ! -
Ive tested it on rise of berk cause I wanted to get used to lldb. GDB works. Any pretty major advantage using lldb?
-
When I do the last step (CTRL+C) the game instantly crashes. Any idea on how to fix this?
-
Patcher Dragons: Rise of Berk v1.9.5 +3
Mayaxaya replied to Mayaxaya's topic in Free Jailbreak Cheats
sorry man -
Patcher [UPDATE] Wild Blood 1.0.4 +3 Hacks
Mayaxaya replied to Mayaxaya's topic in Free Jailbreak Cheats
Just added that download the new deb -
Patcher [UPDATE] Wild Blood 1.0.4 +3 Hacks
Mayaxaya replied to Mayaxaya's topic in Free Jailbreak Cheats
Up again -
Wild Blood v.1.0.4 +3 Hack Features: -Infinite HP -Upgrade for money (Upgrade your armor and weapons for free and get some gold for it) -No Cooldown on Skills (Use as often as you want) Installation: -Download the deb file and install it via iFile [Hidden Content]
- 363 replies
-
- 27
-
-
-
-
-
Patcher Dragons: Rise of Berk v1.9.5 +3
Mayaxaya replied to Mayaxaya's topic in Free Jailbreak Cheats
yea just post it. -
Patcher Dragons: Rise of Berk v1.9.5 +3
Mayaxaya replied to Mayaxaya's topic in Free Jailbreak Cheats
I will fix it in a few minutes Edit: Done -
Patcher [x64] Dungeon Hunter 5 Hack v2.3.0 +9 Cheats
Mayaxaya replied to AirMAX's topic in Free Jailbreak Cheats
Well I can imagine I'm not the only one with this problem. But I really overused it to the very maximum lol. 1000 dodgerolls in 1 game -
Patcher Dragons: Rise of Berk v1.9.5 +3
Mayaxaya replied to Mayaxaya's topic in Free Jailbreak Cheats
Does it work for you? -
Patcher [x64] Dungeon Hunter 5 Hack v2.3.0 +9 Cheats
Mayaxaya replied to AirMAX's topic in Free Jailbreak Cheats
Just like I thought - If you use the no cooldowns hack and roll around all the time the game does not let you finish the mission. Server probably checks the frequency of your skills used. The finishmission doesnt trigger at the end. Happened to me some weeks ago, hacked the cooldown with GDB. -
Is anybody still willing to share this?
-
Features: -Unlimited Runes (They won't get less) -Unlimited Resources (Fish+Wood. they also don't get less) -No cost for firing the catapult in battle mode (most likely easy win) Simply Download the .deb and install it via iFile. Thanks to DiDA and ZahirSher Enjoy! UPDATED/FIXED! [Hidden Content]
- 293 replies
-
- 130
-
-
-
-
-
-
-
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya replied to Mayaxaya's topic in Help & Support
Alright, but as I said the stuff I want to modify consists of the given adress and the adress below (which in this case would be ''0x00327586''. So in order to edit this properly, which one of the following codes would be right?: #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.mayaxaya.rob.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"kRunes")) { writeData(0x00327584, 0xC0467047); //Simply extending the code including the neighboring bytes of the adress below } else { writeData(0x00327584, 0xF0B503AF); //Simply extending the code including the neighboring bytes of the adress below } } or #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.mayaxaya.rob.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"kRunes")) { writeData(0x00327584, 0xC046); writeData(0x00327586, 0x7047); //modifying the adress below seperately } else { writeData(0x00327584, 0xF0B5); writeData(0x00327586, 0x03AF); //modifying the adress below seperately } } Thanks so far and thanks in advance! -
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya replied to Mayaxaya's topic in Help & Support
Alright guys, my tweak.xm looks like the following now: #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.mayaxaya.rob.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"kRunes")) { writeData(0x00327584, 0xC046); } else { writeData(0x00327584, 0xF0B5); } } After saving it I type make package via ssh. What comes out in settings is the original template with the swich stuff, and no matter which switch I activate the hack won't activate -
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya replied to Mayaxaya's topic in Help & Support
-
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya replied to Mayaxaya's topic in Help & Support
Edit: Done - Finally able to create deb packages. But it's always the standard template (Switch text etc.) - How to change that? -
been through a lot of code recently
-
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya replied to Mayaxaya's topic in Help & Support
This is the very outcome: Felix-iPhone-5:~/rob root# make package messages=yes /var/root/rob/theos/makefiles/targets/Darwin-arm/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang. /var/root/rob/theos/makefiles/targets/Darwin-arm/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries. Making all for tweak rob... make -f Makefile --no-print-directory --no-keep-going internal-library-compile _THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=rob _THEOS_CURRENT_OPERATION=compile THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes make[2]: Nothing to be done for `internal-library-compile'. Making all in rob... make[1]: Entering directory `/private/var/root/rob/rob' Making all for bundle rob... mkdir -p "obj/rob.bundle/" mkdir -p "obj/rob.bundle/" mkdir -p "obj/rob.bundle/" for d in Resources; do if [ -d "$d" ]; then rsync -a "$d/" "./obj/rob.bundle/" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*"; else echo "Warning: ignoring missing bundle resource directory $d."; fi; done make -f Makefile --no-print-directory --no-keep-going internal-bundle-compile _THEOS_CURRENT_TYPE=bundle THEOS_CURRENT_INSTANCE=rob _THEOS_CURRENT_OPERATION=compile THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes clang++ -x objective-c++ -c -DTARGET_IPHONE=1 -O2 -I/var/root/rob/theos/include -include /var/root/rob/theos/Prefix.pch -Wall -Werror -isysroot "/var/root/rob/theos/sdks/iPhoneOS7.0.sdk" -arch armv7 -arch arm64 -D__IPHONE_OS_VERSION_MIN_REQUIRED=__IPHONE_3_0 -miphoneos-version-min=3.0 -F/var/root/rob/theos/sdks/iPhoneOS7.0.sdk/System/Library/PrivateFrameworks rob.mm -o obj/rob.mm.27f2d2dc.o rob.mm:1:9: fatal error: 'Preferences/Preferences.h' file not found #import <Preferences/Preferences.h> ^ 1 error generated. make[3]: *** [obj/rob.mm.27f2d2dc.o] Error 1 make[2]: *** [internal-bundle-all_] Error 2 make[1]: *** [rob.all.bundle.variables] Error 2 make[1]: Leaving directory `/private/var/root/rob/rob' make: *** [internal-all] Error 2 Felix-iPhone-5:~/rob root# -
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya replied to Mayaxaya's topic in Help & Support
The thing is that I want to have ONE Single switch in the Future tweak to enable the hack. As you can see it's not the exact Same Adress, the last one differs in one Unit (ends with 6 not 4) In IDA I did one of the standard steps to hack the function namely: Change F0B5 03AF -> C046 7047 While F0b5 is at the offset (not adress) 032....4, 03af is one line below (Ending with 6.) Ill post the massages in a sec -
Help/Support Creating a tweak/.deb hack using CSCI patcher
Mayaxaya posted a topic in Help & Support
Hey guys, the title is pretty self explaining - I'm kinda desperate. Been trying everything in te last 3 hours to make my hack finally work. I've been trying to create a hack by using this method here: http://iosgods.com/topic/2355-updatetemplate-custom-nic-code-injection-template/ and can't get quite forward. What I did is: 1. Enter ''/var/theos/bin/nic.pl'' 2. Select iosgods/cscipatcher 3. Drag the tweak.xml to my pc and edited it in the following way, I entered: #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.xxx.xxx.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"kKey")) { writeData(0xOFFSET, 0xHACKEDHEX); } else { writeData(0xOFFSET, 0xORIGINALHEX); } if(GetPrefBool(@"kGems")) { writeData(0x10963C, 0xC0F8AC70); } else { writeData(0x10963C, 0xC0F8AC20); } if(GetPrefBool(@"kLives")) { writeData(0x10ACEA, 0xC0F8C871); } else { writeData(0x10ACEA, 0xC0F8C811); } if(GetPrefBool(@"kLives2")) { writeData(0x28F17E, 0x0120C046); } else { writeData(0x28F17E, 0x5FF0CDFD); } } 4. Now I edited the code to the following: #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.mayaxaya.rob.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"kRunes")) { writeData(0x00327584, 0xF0B5); writeData(0x00327586, 0x03AF); } else { writeData(0x00327584, 0xC046); writeData(0x00327586, 0x7047); } } and moved it back to the project directory. 5. Now I typed in ''make package'' in order to get my deb file, but I'm facing a shitload of errors. Anyone seeing big mistakes in what I've done? Quite new to this theos stuff, so pls have mercy and don't hit on me cheers m. -
thanks for sharing dude