反转减法算法(Jailbreak App Flex 3)

Reversing the subtract algorithm (Jailbreak App Flex 3)

我最近开始使用 flex 3 来修补游戏并更加了解编码和某些事情的作用。

我为这个名为 Highrise 的应用程序制作了一个补丁,并成功地通过在用户的个人资料被点赞时给用户 +3,000 个气泡而不是编程的 +2 个气泡来使其运行。

现在唯一的问题是,它会为用户提供金额,但一旦您离开房间或关闭应用程序,它就会消失,并且在去游戏商店购买东西时也不会处理。

到目前为止,我收到了一个尝试 "Reversing the subtract algorithm" 的建议,但我不明白那是什么意思。我对编码还很陌生,还有很多知识要学。

有人可以帮忙吗?我在下面发布了我的补丁中的图片。

谢谢!

!(IMG_0808.PNG) !(IMG_0809.PNG) !(IMG_0810.PNG) !(IMG_0811.PNG) !(IMG_0812.PNG)

那是因为您尝试 破解 的应用程序是服务器端的。 Flex 3 在破解 iOS 应用程序时不再那么有用,除非您尝试修改基本的离线非服务器端游戏。

更清楚一点,当你试图修改你在Highrise中收到的"Bubbles"数量时对于 Flex 3,它不起作用,因为那些 "Bubbles" 存储在服务器上。当它们被使用时,游戏将从服务器获取它们。

The only problem now is that it gives the user the amount but it disappears

那是因为 Flex 3 只改变 "Bubbles" 的 Visual 数量,而不是实际的服务器端存储量。

I received one suggestion so far which was to try "Reversing the subtract algorithm" but I don't understand what that means.

这是破解应用程序的高级方法。您基本上将应用程序的二进制文件加载到反汇编程序中,例如 IDA Pro find the algorithm that subtracts the "Bubbles". This is a very long subject to understand to I suggest you go on this website https://www.iosgods.com and learn how to hack games using a disassembler + debugger. They have nice tutorials 如何开始。