Jump to content

Donald J Trump

Member
  • Posts

    78
  • Joined

  • Last visited

Everything posted by Donald J Trump

  1. Like att *. I use gdb and no lldb so idk how to explain but search how to set watchpoints in lldb
  2. Don't worry about that. Attach the game to lldb screen because that's what the server is waiting for.
  3. 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.
  4. 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; }
  5. @CorruptedHxR already hacked Pou
  6. 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
  7. 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
  8. @shmoo is right. tiny towers game is remade in unity form.
  9. 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
  10. I'm sorry. I thought it would be good to notify you since you know this stuff Thanks bro, atleast somebody helped.
  11. 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
×
  • 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