Jump to content

Donald J Trump

Member
  • Posts

    78
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 6
  • iOS Version
    9.0.2
  • Android Device
    Samsung Galaxy Tab 4
  • Gender
    Male
  • Interests
    Software Engineer and Computer Science involving Objective-C

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Donald J Trump's Achievements

Newbie

Newbie (1/14)

3

Reputation

  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.
×
  • 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