Jump to content

klashksa

Senior Member
  • Posts

    472
  • Joined

  • Last visited

Everything posted by klashksa

  1. hello I need to help guys who can help me plz I made deb file and installed on my device ( ios8.3 ) I'm sure 100% true But the alerts or messages did not appear My Terminal pic : My files pic : My tweak.xm pic : My Makefile pic : My tweak in cydia pic : Note : I followed all institutions, but I didn't get the message. * This picture from YouTube \/ \/
  2. Name of the Game: Modern Combat 5 : The Multiplayer eSports Shooter By Gameloft iTunes Link: https://itunes.apple.com/us/app/modern-combat-5-the-multiplayer-esports-shooter/id656176278?mt=8&uo=4&at=1010lce4 Bundle ID: com.gameloft.ModernCombat5 Version 2.7.0 must be the duel rating *( not soldiers league ) close from rating your friend Example : my duel rating is 2703 must be duel rating my friend is 2500 like this enjoy ! me @klashksa
  3. hello I need to help guys who can help me plz I made deb file and installed on my device ( ios8.3 ) I'm sure 100% true But the alerts or messages did not appear My Terminal pic : My files pic : My tweak.xm pic : My Makefile pic : I followed all institutions, but I didn't get the message. * This picture from YouTube @DiDA @arthurdapaz @shmoo
  4. Thx bro for ur comment but I get this wrong after the remove this is my tweak.xm after removed key1 This is my new problem @DiDA
  5. I can't create makefile package I have a problem This is my problem note : my tweak.xm like this topic #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import <substrate.h> /* To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-tweakpatcherfunction-tweakpatcher-withwithout-psedittextcellpsslidercell-generator-online/ */ /* To Easily Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject-generator-online-tweakxm-preferencesplist/ */ #define PLIST_PATH @"/var/mobile/Library/Preferences/@@PACKAGENAME@@.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"key1")) { writeData(0xOFFSET, 0xHEX); } else { } if(GetPrefBool(@"key2")) { writeData(0x10963C, 0xC0F8AC70); } else { } if(GetPrefBool(@"key3")) { writeData(0x10ACEA, 0xC0F8C871); } else { } if(GetPrefBool(@"key4")) { writeData(0x1806B8, 0x381C); writeData(0x2FA51C, 0x381C); writeData(0x1806B8, 0x7047); writeData(0x1806B8, 0x7047); } else { } } /* Popup with a link Varieties of a UIAlertView Popup can be found here: https://iosgods.com/topic/13988-varieties-of-uialertview-types-to-use-in-your-tweaks-patchers/ */ %hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"@@PROJECTNAME@@ Cheats" message:@"\n@@PROJECTNAME@@ Cheats by @@@User@@ for iOSGods.com" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:@"Visit Us", nil]; [igcredits show]; [igcredits release]; return %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit Us"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iosgods.com/"]]; } } %end @DiDA
  6. I have small problem https://b.top4top.net/p_5654nr9h0.jpg my tweak.xm copy paste from this topic
×
  • 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