Jump to content

Any way to hook either settings or springboard?


Go to solution Solved by sn0wqt,

4 posts in this topic

Recommended Posts

Posted

Hey guys I wanna hook either springboard or settings for a UIAlert after a respring since the game crashes when I add one :(

 

So does anybody know how I would do this? And what method it would be for a pop up that only happens ONCE

  • Solution
Posted (edited)

Hey guys I wanna hook either springboard or settings for a UIAlert after a respring since the game crashes when I add one :(

So does anybody know how I would do this? And what method it would be for a pop up that only happens ONCE

you dont need to hook anything lol if its a patcher then you can add an alert in the preference bundle of the hack :)

 

Your Preference bundle Makefiles should be like this:

ARCHS = armv7 arm64include /var/theos/makefiles/common.mkBUNDLE_NAME = MinionsCheatsMinionsCheats_FILES = MinionsCheats.mmMinionsCheats_INSTALL_PATH = /Library/PreferenceBundlesMinionsCheats_FRAMEWORKS = UIKitMinionsCheats_PRIVATE_FRAMEWORKS = Preferencesinclude $(THEOS_MAKE_PATH)/bundle.mkinternal-stage::	$(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END)	$(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/MinionsCheats.plist$(ECHO_END)
And you need these 2 files in the preference folder:

https://www.dropbox.com/s/2wn34sddgamwmk9/Archive.zip?dl=0

 

Then in ur .mm file of the patcher, add this code at the latest line before the @end:

-(void)apply {[RKDropdownAlert title:@"Minions Paradise Cheats" message:@"Hacked by Endou for iOSGods.com" backgroundColor:[UIColor yellowColor] textColor:[UIColor orangeColor] time:10];}
After all these work, add this code in ur patcher plist:

<dict>			<key>action</key>			<string>apply</string>			<key>cell</key>			<string>PSButtonCell</string>			<key>label</key>			<string>See Credits:</string>		</dict>
You should know where to put these and apply these so i wont explain that i already told you everything! Updated by EndouMa
Posted

you dont need to hook anything lol if its a patcher then you can add an alert in the preference bundle of the hack :)

 

Your Preference bundle Makefiles should be like this:

 

ARCHS = armv7 arm64include /var/theos/makefiles/common.mkBUNDLE_NAME = MinionsCheatsMinionsCheats_FILES = MinionsCheats.mmMinionsCheats_INSTALL_PATH = /Library/PreferenceBundlesMinionsCheats_FRAMEWORKS = UIKitMinionsCheats_PRIVATE_FRAMEWORKS = Preferencesinclude $(THEOS_MAKE_PATH)/bundle.mkinternal-stage::	$(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END)	$(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/MinionsCheats.plist$(ECHO_END)
And you need these 2 files in the preference folder:

https://www.dropbox.com/s/2wn34sddgamwmk9/Archive.zip?dl=0

 

Then in ur .mm file of the patcher, add this code at the latest line before the @end:

-(void)apply {[RKDropdownAlert title:@"Minions Paradise Cheats" message:@"Hacked by Endou for iOSGods.com" backgroundColor:[UIColor yellowColor] textColor:[UIColor orangeColor] time:10];}
After all these work, add this code in ur patcher plist:

<dict>			<key>action</key>			<string>apply</string>			<key>cell</key>			<string>PSButtonCell</string>			<key>label</key>			<string>See Credits:</string>		</dict>
You should know where to put these and apply these so i wont explain that i already told you everything!
Thanks so much for taking the time to write all that :) I really appreciate it :)

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