Jump to content

Mayaxaya

Senior Member
  • Posts

    1,223
  • Joined

  • Last visited

Everything posted by Mayaxaya

  1. plain superiority complex welcome !
  2. Ive tested it on rise of berk cause I wanted to get used to lldb. GDB works. Any pretty major advantage using lldb?
  3. When I do the last step (CTRL+C) the game instantly crashes. Any idea on how to fix this?
  4. Just added that download the new deb
  5. 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]
  6. I will fix it in a few minutes Edit: Done
  7. 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
  8. 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.
  9. Is anybody still willing to share this?
  10. 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]
  11. 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!
  12. 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
  13. Edit: Done - Finally able to create deb packages. But it's always the standard template (Switch text etc.) - How to change that?
  14. been through a lot of code recently

    1. Show previous comments  4 more
    2. arthurdapaz

      arthurdapaz

      hey! we should work together! have a few things done to my oz: broken kingdom mod menu!

    3. coldhartsicy

      coldhartsicy

      I think u r really good in hacking, nice work !!

    4. Amit-sh

      Amit-sh

      Thanks for your hard work plz update your marvel future fight hack to 2.6.0

    5. Hoannike

      Hoannike

      Hi bro what your my repo???

    6. Hoannike

      Hoannike

      You can hack game Shadowblood no skill cool down, one hit skill

  15. 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#
  16. 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
  17. Thx
  18. 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.
  19. thanks for sharing dude
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines