Jump to content

14 posts in this topic

Recommended Posts

Posted (edited)

Hello everyone...

I made a tweak with theos and when i make the package i get the .deb without an error. But after i installed the .deb i cant open settings but i can open the game and the hack works...And if im gonna turn off my phone it stucks in a reboot loop. If i wanna fix that, i have to enter the safemode, remove the .deb and respring again. Can someone help me fix that?

Updated by AxCE
Posted

Hello everyone...

I made a tweak with theos and when i make the package i get the .deb without an error. But after i installed the .deb i cant open settings but i can open the game and the hack works...And if im gonna turn off my phone it stucks in a reboot loop. If i wanna fix that, i have to enter the safemode, remove the .deb and respring again. Can someone help me fix that?

Show us your tweak.xm? Did you use the template form the Tools section?

Posted

Show us your tweak.xm? Did you use the template form the Tools section?

Tweak.xm:

#import "writeData.h"

#import "Macros.h"

#import <Foundation/Foundation.h>

#import <substrate.h>

int (*speedOld)(void *self, int arg0, int arg1);

 

int speed(void *self, int arg0, int arg1){

if(speedOld(self, arg0, arg1)>0){ //if you aren't moving you'd be stuck in place with this

writeData(0x33d3a8, 0x0020c046); //trick the game into thinking its always on the ground

writeData(0x535370, 0x7047); //remove all collision

}

 

return speedOld(self, arg0, arg1);

}

 

%ctor{

MSHookFunction((void*)(_dyld_get_image_vmaddr_slide(0) + 0x114dd0 + 1),(void*)speed,(void**)&speedOld);

}

 

Yes, i guess.

Posted

Tweak.xm:

#import "writeData.h"

#import "Macros.h"

#import <Foundation/Foundation.h>

#import <substrate.h>

int (*speedOld)(void *self, int arg0, int arg1);

 

int speed(void *self, int arg0, int arg1){

if(speedOld(self, arg0, arg1)>0){ //if you aren't moving you'd be stuck in place with this

writeData(0x33d3a8, 0x0020c046); //trick the game into thinking its always on the ground

writeData(0x535370, 0x7047); //remove all collision

}

 

return speedOld(self, arg0, arg1);

}

 

%ctor{

MSHookFunction((void*)(_dyld_get_image_vmaddr_slide(0) + 0x114dd0 + 1),(void*)speed,(void**)&speedOld);

}

 

Yes, i guess.

Have you added SpringBoard to your bundle id?

Posted

Have you added SpringBoard to your bundle id?

Sorry, im really bad at this...Where can i find the bundle id? :3

Posted

Sorry, im really bad at this...Where can i find the bundle id? :3

What's in that plist next to your Tweak.xm?

Posted

What's in that plist next to your Tweak.xm?

<?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>Filter</key>

<dict>

<key>Bundles</key>

<array>

<string>com.gameloft.nova3ads</string>

</array>

</dict>

</dict>

</plist>

 

 

Thats my .plist

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