-
Posts
303 -
Joined
-
Last visited
Everything posted by Red16
-
Help/Support How to make a void work with PreferenceBundle?
Red16 replied to Astronaut's topic in Help & Support
You need a value it cannot simply be return %orig if you don’t know what %orig is I recommend you look up a tut maybe im worng it might only work with - (bool) -
Ninja Dash - Shinobi Warriors v1.3.6 - Currency Offsets
Red16 replied to Joka's topic in Coding Center
My lucky day -
What ever happened
-
I am currently working on this might take me a couple months since I don’t have any tools to find the hex
-
Thank you I hope I wrote it right
-
I keep geting an error when I’m compiling this. it says: Tweak.xm:3:40: error: non-ASCII characters are not allowed outside of literals and identifiers If (GetPrefBool (@ "<U+FEFF><U+FEFF><U+FEFF><U+FEFF> kGem "<U+FEFF><U+FEFF><U+FEFF><U+FEFF>)) { This is inside the tweak.xm %hook Gem - (int) gemvalue { If (GetPrefBool (@ " kGem ")) { return 999; } return %orig; } %end
-
Sick easy game to hack for the newbies
-
I’m dying cause I’m trying to learn iv already made my first hack
-
It worked teddy you are a genius cant thank you enough
-
Okay I’ll try what you said it might work
-
No I wrote that that’s why I’m geting the these errors I’m trying to make the flex hack into ms hook
-
Already tried
-
No I’m geting errors compiling the .deb
-
im getting this error (red16) today is not my lucky day how do i fix Enable-WindowsOptionalFeature : The term 'Enable-WindowsOptionalFeature' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Wind ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Enable-WindowsOptionalFeature:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
-
I got it from jake james so which one should I use Or upgrade
-
Still the same error let me sand the flex thing to you can you tell me how
-
This didn’ Work but this one kinda worked with building tweak.xm in obj folder %hook Gem -(int) gemvalue { return 999; } %end %hook Player -(bool) invincible { return TRUE; } -(bool) onGround{ return TRUE; } -(bool) toBounce{ return TRUE; } %end %hook Water -(bool) isLava{ return FALSE; } %end %hook AppDelegate -(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Goblin Sword MegaHack" message:@"Be sure to stop by iosgods.com and thank @red16" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil]; [alert show]; [alert release]; return %orig; } %end
-
%hook Gem -(int) gemvalue { return 999; } %end %hook Player -(bool) invincible { return TRUE; } -(bool) onGround{ return TRUE; } -(bool) toBounce{ return TRUE; } %end %hook Water -(bool) isLava{ return FALSE; } %end %hook AppDelegate -(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Goblin Sword MegaHack" message:@"Be sure to stop by iosgods.com and thank @red16" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil]; [alert show]; [alert release]; return %orig; } %end
-
in .theos I do have Tweak.xm.763b6ea0.Td- for arm 64 for armv 7-Tweak.xm.a685d69c.Td i don’t have the dylib file
-
It dosent work I get new errors it failed to make dylib file
-
Yes I just did this
-
Im geting a lot of errors so I’m just going to put a picture up
-
I don’t know what I did worng here I am trying to hack a basic simple game when I try to compile this I get a lot of errors. I know iv searched and couldn’t find what I was looking for For errors see picture https://drive.google.com/file/d/1GdYgUODaAqxTF9kxtFfuz0QJOcB--5vG/view?usp=drivesdk %hook Gem -(int) gemvalue { return 999; } %hook Player - (void) setinvincible:(bool)yup { Id = TRUE; %orig(yup); } %end %hook Player -(bool) invincible { return TRUE; } %end %hook Player -(bool) toBounce{ return TRUE; } %end %hook Water -(bool) isLava{ return FALSE; } %end %hook Water - (void) setIsLava:(bool)yay { Id = TRUE; %orig(yay); } %end %hook Player -(bool) onGround{ return TRUE; } %end