Jump to content

Taylor Meyer

Senior Member
  • Posts

    739
  • Joined

  • Last visited

Everything posted by Taylor Meyer

  1. same here i have same problem gosh dang it try snap + he put it the developer put out a update where it prevents DYLD (Dynamic Loader) lookups by developers im gonna try it when my account gets unlocked
  2. here is the tweak.xm #include <substrate.h> static bool missileCollision() { return FALSE; } static bool shopItemsPurchased() { return TRUE; } static void shopItemsPurchased2() { } static int getCurrency() { return 99999999; } static bool playerIsDead() { return FALSE; } static void missionMaxLevel() { } static bool slotTokenCollision() { return FALSE; } static bool playerIsImmune() { return TRUE; } static bool ObstacleColliding() { return FALSE; } %ctor { MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4Game"),(void*)missileCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*)shopItemsPurchased, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv"),(void*)shopItemsPurchased2, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)getCurrency, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerIsDead, NULL); MSHookFunction(MSFindSymbol(NULL, " __ZN14MissionManager15ReachedMaxLevelEv"),(void*)missionMaxLevel, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER4Game"),(void*)slotTokenCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)playerIsImmune, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4Game"),(void*)ObstacleColliding, NULL);
  3. Tweak.xm:49:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPl... ^ Tweak.xm:51:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"... ^ Tweak.xm:53:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSucces... ^ Tweak.xm:55:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv")... ^ Tweak.xm:57:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN6Player6IsDeadEv")),(void... ^ Tweak.xm:59:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN14MissionManager15Reached... ^ Tweak.xm:61:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWith... ^ Tweak.xm:63:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv")),(v... ^ Tweak.xm:65:1: error: C++ requires a type specifier for all declarations MSHookFunction(((void*)MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithP... ^
  4. tried it is giving me this Tweak.xm:65: error: fell off the face of the planet when we found a '}'
  5. will try thanks so just put } at the end only reason why I ask is Amuyea said } //
  6. i messed around and i think i fixed it but i got this Tweak.xm:49:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4G... ^ Tweak.xm:51:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*... ^ Tweak.xm:53:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv")... ^ Tweak.xm:55:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)... ^ Tweak.xm:57:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerI... ^ Tweak.xm:59:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN14MissionManager15ReachedMaxLevel... ^ Tweak.xm:61:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER... ^ Tweak.xm:63:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)play... ^ Tweak.xm:65:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4...
  7. here is the tweak.xm #include <substrate.h> static bool missileCollision() { return FALSE; } static bool shopItemsPurchased() { return TRUE; } static void shopItemsPurchased2() { } static int getCurrency() { return 99999999; } static bool playerIsDead() { return FALSE; } static void missionMaxLevel() { } static bool slotTokenCollision() { return FALSE; } static bool playerIsImmune() { return TRUE; } static bool ObstacleColliding() { return FALSE; } %ctor { MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4Game"),(void*)missileCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*)shopItemsPurchased, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv"),(void*)shopItemsPurchased2, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)getCurrency, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerIsDead, NULL); MSHookFunction(MSFindSymbol(NULL, " __ZN14MissionManager15ReachedMaxLevelEv"),(void*)missionMaxLevel, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER4Game"),(void*)slotTokenCollision, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)playerIsImmune, NULL); MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4Game"),(void*)ObstacleColliding, NULL);
  8. i PMed you my tweak.xm i searched the feature unlock all items i think i may have found something
  9. then why did you release a patcher of that game in vip cheats
  10. im gonna send you my tweak.xm
  11. what do you mean by game name
  12. when i type make package > Making all for tweak Hidden ==> Preprocessing Tweak.xm… ==> Compiling Tweak.xm (armv7)… Tweak.xm:49:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN7Missile19CollidingWithPlayerER4G... ^ Tweak.xm:51:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem11IsPurchasedEv"),(void*... ^ Tweak.xm:53:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8ShopItem18PurchaseSuccessfulEv")... ^ Tweak.xm:55:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN4Game14GetCurrencyQtyEv"),(void*)... ^ Tweak.xm:57:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN6Player6IsDeadEv"),(void*)playerI... ^ Tweak.xm:59:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN14MissionManager15ReachedMaxLevel... ^ Tweak.xm:61:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN9SlotToken19CollidingWithPlayerER... ^ Tweak.xm:63:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZNK6Player8IsImmuneEv"),(void*)play... ^ Tweak.xm:65:1: error: C++ requires a type specifier for all declarations MSHookFunction(MSFindSymbol(NULL, "__ZN8Obstacle19CollidingWithPlayerER4... ^ 9 error generated. make[3]: *** [/home/taylormeyer/theos/makefiles/instance/rules.mk:284: /home/taylormeyer/Hidden.theos/obj/debug/armv7/Tweak.xm.a5c61f40.o] Error 1 make[2]: *** [/home/taylormeyer/theos/makefiles/instance/library.mk:32: /home/taylormeyer/Hidden/.theos/obj/debug/armv7/Hidden.dylib] Error 2 make[1]: *** [/home/taylormeyer/theos/makefiles/instance/library.mk:24: internal-library-all_] Error 2 make: *** [/home/taylormeyer/theos/makefiles/master/rules.mk:90: Hidden.all.tweak.variables] Error 2 then when i type make troubleshoot it says make: *** [/home/taylormeyer/theos/makefiles/master/rules.mk:166:
  13. Nice
  14. Try onavo Vpn is amazing
  15. i gave you REP on both post and to make the letmedebug work on ios 9 will i have to add that one line code in my makefile
  16. thanks buddy i put that in now the BASH_PROFILE file the lines at the bottom are export THEOS=/home/*/theos/ export THEOS_MAKE_PATH=/home/*/theos/makefiles/ is that correct
  17. this is the project https://github.com/sharedRoutine/letmedebug
  18. love you daddy
  19. nice
  20. oh sorry MSHook in IDA
  21. i wasn't being rude
×
  • 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