Jump to content

27 posts in this topic

Recommended Posts

Posted

Does the modded binary take effect when you replace the original with it?

Have you switched it on in the settings?

I assume you used template and copied tweak.xm from armconverter.com and the relevant part of .plist? If not, do so.

Which iOS are you on? which device (32 or 64 bit)?

In iOS 10 up, you need to use a newer SDK (>9.2 afaik) in order to properly compile.

IPhone 6 -9.1
  • Replies 26
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted

IMG_20170320_WA0069.jpg

IMG_20170320_WA0070.jpg

 

Does the modded binary take effect when you replace the original with it?

Have you switched it on in the settings?

I assume you used template and copied tweak.xm from armconverter.com and the relevant part of .plist? If not, do so.

Which iOS are you on? which device (32 or 64 bit)?

In iOS 10 up, you need to use a newer SDK (>9.2 afaik) in order to properly compile.

  

Show .plist

Posted

For <key>key</key> you haven't changed it :/

Edit for me what i have done wrong

 

<?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>By iosgods</string>

</dict>

<dict>

<key>cell</key>

<string>PSSwitchCell</string>

<key>default</key>

<false/>

<key>defaults</key>

<string>Resource</string>

<key>key</key>

<string>Resource</string>

<key>label</key>

<string>Resources</string>

</dict>

<dict>

<key>cell</key>

<string>PSTextCell</string>

<key>label</key>

<string>Made by fahadmxb.</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>duped Cheats</string>

</dict>

</plist>

 

 

thanks

Posted

Edit for me what i have done wrong

<?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>By iosgods</string>

</dict>

<dict>

<key>cell</key>

<string>PSSwitchCell</string>

<key>default</key>

<false/>

<key>defaults</key>

<string>Resource</string>

<key>key</key>

<string>Resource</string>

<key>label</key>

<string>Resources</string>

</dict>

<dict>

<key>cell</key>

<string>PSTextCell</string>

<key>label</key>

<string>Made by fahadmxb.</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>duped Cheats</string>

</dict>

</plist>

thanks

You choose what you want the key to be called in your tweak.xm. Show your tweak.xm too
Posted

You choose what you want the key to be called in your tweak.xm. Show your tweak.xm too

  

:facepalm: change key to what you want it to be in your tweak.xm

Like key1, key2, key3 and use the same on .plist (should correspond with features)

#import "writeData.h"

#import <Foundation/Foundation.h>

#import <UIKit/UIKit.h>

 

inline bool GetPrefBool(NSString *key) {

return [[[NSDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences/iosgod.plist"] valueForKey:key] boolValue];

}

 

%ctor {

if(GetPrefBool(@"Resource")) {

writeData(0x000, 0x00000);

} else {

 

}

 

}

Posted (edited)

Show your tweak.xm and il send you tweak.xm and .plist with it fixed.

 

Use it like this, in Tweak.xm where you see

 

if(GetPrefBool(@"key1")) { //If you dont see this, you should use DiDA's templat because this is what differentiates tweak from patcher. Set the key corresponding to hacked function
put any key like "item", "resource" etc.

 

In your .plist, default is

<dict>
			<key>cell</key>
			<string>PSSwitchCell</string> //Type of cell
			<key>default</key>
			        <false/> //By default, switch is off
			<key>defaults</key>
			<string>com.yourcompany.hack</string> //the bundle name you assigned to this (not the games bundle id, the one which you put like com.archangel.hack)
			<key>key</key>
			<string>key1</string> //The key name in your tweak.xm corresponding to this switch (eg.resource. items etc)
			<key>label</key>
			<string>SwitchName</string>//What you want others to see (check with key)
		</dict>

Your .plist dict for that one will be

 

<dict>
			<key>cell</key>
			<string>PSSwitchCell</string>
			<key>default</key>
			<false/>
			<key>defaults</key>
			<string>iosgod</string>
			<key>key</key>
			<string>Resources</string>
			<key>label</key>
			<string>Resources Hack</string>
		</dict>

EDIT: Fixed some code tag issues

Updated by Archangel04

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • 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