Donald J Trump
Member-
Posts
78 -
Joined
-
Last visited
Everything posted by Donald J Trump
-
Mod Menu Hack MARVEL Avengers Academy v2.15.0 +4 Cheats
Donald J Trump replied to Zahir 's topic in Free Jailbreak Cheats
Armv7 support? -
Hack Terraria 1.2.12785 All Item World
Donald J Trump replied to hellotherefriend's topic in Save Game Cheats
Nice -
Voted #2
-
Is there a posting template for a patcher or tweak to post here on iOSgods? Cause the old one doesn't work anymore when I try to copy and paste. Please link me to new one.
-
I'm trying to make A code for my AI to search a database of predetermined code snippets that it can use to write its own code. Maybe @ZahirSher or @shmoo or @DiDA could help please. Like where did I mess up? The error said- invalid code and didn't give me a line. Here is the code: const char *kmp_search(const char *text, const char *pattern) { int *T; int i, j; const char *result = NULL; if (pattern[0] == '\0') return text; /* Construct the lookup table */ T = (int*) malloc((strlen(pattern)+1) * sizeof(int) ); T[0] = -1; for (i=0; pattern != '\0'; i++) { T[i+1] = T + 1; while (T[i+1] > 0 && pattern != pattern[T[i+1]-1]) T[i+1] = T[T[i+1]-1] + 1; } /* Perform the search */ for (i=j=0; text != '\0'; ) { if (j < 0 || text == pattern[j]) { ++i, ++j; if (pattern[j] == '\0') { result = text+i-j; break; } } else j = T[j]; } free(T); return result; }
-
@CorruptedHxR already hacked Pou
-
Help/Support Unity 3D Games Hacking (Help)
Donald J Trump replied to Donald J Trump's topic in Help & Support
I tagged shmoo cause he knows more about this than anyone else! I look up to him! And you haven't even answer all the questions! I specifically said to answer all questions -
iOS 9.0.2 iPhone 6 how I hack unity 3D? Like with Ida or .net reflector on iOS? Also I can't find tut on here that explains unity 3D. Can you link? Also is unity 3D hacking harder than regular Ida hacking without unity 3D? If yes then how so? @shmoo please answer all these questions and I won't bug you guys anymore. #noob
-
@shmoo is right. tiny towers game is remade in unity form.
-
[Objective C]How to change the slide to unlock text
Donald J Trump replied to a topic in Coding Center
Interesting -
R
-
D
-
Help/Support One More thing and that's it: differences
Donald J Trump replied to Donald J Trump's topic in Help & Support
Thanks -
Help/Support One More thing and that's it: differences
Donald J Trump posted a topic in Help & Support
I won't bug you guys anymore but one more thing I need clarification on: What's the difference between MSHOOK patcher and MSHOOK tweak? Examples maybe to help understanding? Thank you. you won't hear from me for a while and I MEAN IT. @Diversityy -
Help/Support Preference bundle help please
Donald J Trump replied to Donald J Trump's topic in Help & Support
I'm sorry. I thought it would be good to notify you since you know this stuff Thanks bro, atleast somebody helped. -
How would I make a box in preference bundle that allows the user to change value of coins. For example, if I wanted to change amount of coins in game, I would go to settings and input the number in the pref bundle that I want. How do cheaters and hackers like @shmoo make that available? Like the user can input an amount of coins they want in game. I have the offset but what is the code that allows for this switch to input an amount of coins? Please help or if need more clarification then please tell me! @ZahirSher @DiDA @Crypto
-
Good
-
K