-
Posts
4,939 -
Joined
-
Last visited
Everything posted by Ted2
-
the code you just did, I've tried before. I'm getting a error: %orig found outside of hook or subs class. and yes, I did. Why ?
-
Hacked App: Bike Race Pro & Bike Race TFG iTunes Link: Bike Race Pro: https://itunes.apple.com/us/app/bike-race-pro/id510461370?mt=8&uo=4 Bike Race Free: https://itunes.apple.com/us/app/bike-race-free-by-top-free/id510461758?mt=8&uo=4 Bundle ID: com.topfreegames.bikeracepaid/ & com.topfreegames.bikeracefree Hack Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools / AnyTrans / iExplorer / DiskAid or any other file managers for iOS. - Cydia Substrate (from Cydia). Hack Features: (iAP Cracker DOESN'T work on this game anymore) 1. All Bikes Unlocked, Ultra, Super, Kids etc + Special bikes + World Tour Bikes (except tourney bikes, server sided) 2. All Achievements completed 3. Unlimited Free User Created Tracks 4. Unlimited Free Guest Multiplayer Games (normally 5 a day) 5. No ADS (for Free version of Bike Race) 6. Unlimited Retries (will stay stuck at 1 always) Hack Download Link: [Hidden Content] Installation Instructions: Step 1: Download the file from the link above. Step 2: Copy the file over to your iDevice using any file managers mentioned above or skip this step if you're downloading from your iDevice. Step 3: Using iFile or Filza, browse to where you saved the downloaded deb file and tap on it. Step 4: Once you tap on the file, you will then need to press on "Installer" or 'Install' from the options on your screen. Step 5: Let iFile / Filza finish the installation. Step 6: Once the installation is finished, open the app and enjoy the hack! NOTE: Be sure you closed cydia before do this Note: - if you find any bug tell me - if you're not jailbroken, take a look at this: https://iosgods.com/topic/19383-bike-race-pro-bikeracetfg-all-bikes-hack/page-1 Credits: - xShadowGhostx/BikeRaceJ Hack Video/Screenshots:
- 60 replies
-
- 98
-
-
-
-
-
-
-
#include <substrate.h> bool isGhost() { return true; } bool isHog() { return true; } bool isAllWheel() { return true; } bool isReverse() { return true; } bool isExtraChance() { return true; } bool isUnbreakable() { return true; } %ctor{ MSHookFunction(((void*)MSFindSymbol(NULL, "_bikeInfo_isGhost")),(void*)isGhost, NULL); MSHookFunction(((void*)MSFindSymbol(NULL, "_bikeInfo_isHog")),(void*)isHog, NULL); MSHookFunction(((void*)MSFindSymbol(NULL, "_bikeInfo_isAllWheel")),(void*)isAllWheel, NULL); MSHookFunction(((void*)MSFindSymbol(NULL, "_bikeInfo_isReverse")),(void*)isReverse, NULL); MSHookFunction(((void*)MSFindSymbol(NULL, "_bikeInfo_isExtraChance")),(void*)isExtraChance, NULL); MSHookFunction(((void*)MSFindSymbol(NULL, "_bikeInfo_isUnbreakable")),(void*)isUnbreakable, NULL); }
-
uhmm, I don't understand it , can you make an example with one of the functions I wanna use?
-
You tried it ? Alright, thanks
-
like this?
-
oh yeah, it's actually the same almost _bikeInfo_isAllWheel _bikeInfo_isExtraChance _bikeInfo_isGhost _bikeInfo_isHog _bikeInfo_isReverse _bikeInfo_isReverse
-
What do you mean? mean this?
-
yep, fml. lol
-
Flex patch not possible anymore, that's why I'm doing it in this way.
-
like: @("kSomething")) anyways, I tried the code you told me but somehow it won't work -___-
-
Wait, don't I need a key for each one? bool isReverse bool isGhost etc ?
-
okey, I'll try. thankyou
-
the whole point is, it isn't in Flex anymore. I opened the binary and found it was written here. so I followed shmoo's new MSHook tutorial, but that's not a MShook patcher but tweak
-
yeahh.. well.. somehow the MSFindSymbol only works... (_bikeInfo_isReverse)
-
Yes when I compile tweak.xm:
-
Yeah tried this it says: expect ';' bool isReverse { return TRUE; } and when I do that it says: expected unqualified-id
-
hmm okey then, tell me what am I doing wrong? I do the exact same in the online generator, this one codes it diffrent and then my code is not working
-
Hey.. I'm trying to use the MSHook new way, this one: https://iosgods.com/topic/4295-tutorial-how-to-hack-with-mshook-new-way/ it was going very good, but the problem is that I wanna use it with the Preference Bundle.. with that way above you return it and that's what it is, I wanna return it to true or false using the Preference bundle when I want So, I tried the MSHook Generator Online, but every time I use that nothing works, My question is, how can I make this code for a preference bundle? bool isReverse() return true; }
-
yay ;D
-
Can we also have a function like this: -(int) something: (float)arg1 if yes, how do we have to code this ?
-
I tried, but I'm not really understand what the name of the unit is, and how I have to set it
-
This is what I wanna write btw: https://www.dropbox.com/s/5jh7m3l3bot77y3/Foto%2020-02-16%2023%2008%2017.png?dl=0
-
Yes, but he isn't working with void etc, just with int
-
it's for a psedittextcell so it's giving me a error that the void can;t be returned in a int value.... how do I have to name the code 'intvalue' ?