-
Posts
1,324 -
Joined
-
Last visited
Posts posted by bR34Kr
-
-
9 minutes ago, Jacksonlane24 said:
Thanks for the detailed reply, I was actually able to branch the functions and offsets and got the cheat to work when pressing the music button, of course I want to try to do multiple branches at a time, because; i put these into a modmenu as there’s a lot, but the thing is I can only enable one at a time, like I can’t do ... give 10k coins and give 10k gems ... at the same time so is it possible to branch multiple functions to the same offset (music button) and for them to both work at the same time? Also I’ll read into guest’s topic on function pointers, Thank you bR34Kr
Ah wait no I was wrong. Do a BL for two of the functions so it branches with a link to the function and then for the last call do a regular branch
-
Learn about functions first. This should be handled like any other type, the only difference is their prototype and required arguments. You don't actually want to hack those, you want to call these functions. Read Guest's tutorials about Function Pointers etc. it'll serve you for this. If you only want to press the music button to do that you just need to patch and you have no use for a menu. The new assembly would be to branch to one of those functions on click. If you want to execute them all then do two BLs and make sure you branch to the link register at the end of each of the functions you BL to and then do a normal branch.
-
1
-
-
@Rook Be sure to remove the dead links in More->ArmConverter
Edit: Also the "Toggle mode" button increases the Successful Conversions counter because it sends a request to /api/convert for some reason. A quick fix that would also solve another issue would be to not set it as Successful when the /api/convert request headers have blank values.
-
1 minute ago, Rook said:
This.
Also an SSD is quite necessary in 2020.
No SSD = Getting bullied in R6
-
Do what Rook said. Rather than constantly upgrading and losing money, you do one big investment and you’ll be running good for a long time
. Also take time to read a lot of reviews, if you break any parts it’s gonna cost much more if you want a fix on laptop, so be sure it’s built correctly.
-
1
-
1
-
-
Just now, ZoZo said:
It's just a function I found in IDA and it looks like q-vision so I named it q-vision.
All good bud
-
Good job but
SpoilerWhere’s the QVision?
-
Just following my pre-coronavirus daily routine
-
Aww yeah
-
150
-
40
-
27
-
13
-
30
-
24
-
-
33 minutes ago, Walking Hell said:
When i do this i normally just copy the the request from flexible and edit it in notepad app to my desirable outcome , and open my terminal and paste it in there. However, you do require tweaks such as CA Certs and cUrl.
If you want to use cURL to make the requests then yes, but Python’s requests module should be fine too.
-
@Ted2 Good job! You're jumping in an amazing world.
And btw, this
body = {"bikes": [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75],}
can be replaced with this
body = {"bikes": list(range(1, 75))}
-
2
-
2
-
1
-
-
1 hour ago, Laxus said:
Naisuuu
Question is do you need to run the python code everytime you open the game just do it once?
No, it sets the bikes for your account. It's literally using what the game uses to notify the server when you earn a new bike or stuff like that. Nothing local :P
-
2
-
1
-
-
Amazing!
Good job!
-
72
-
14
-
14
-
11
-
15
-
6
-
-
-
I couldn’t even dream of making art like this. Amazing work!
-
2
-
-
Good job!
-
-
Good job as always
-
1
-
1
-
1
-
-
Good job!
-
1
-
1
-
-
Thanks. Now I can freeze granny and grandpa
On a serious note, good job
-
4
-
1
-
1
-
2
-
1
-
1
-
-
Good job
-
39
-
5
-
5
-
7
-
5
-
3
-
-
Good job!
-
1
-
1
-
-
2 minutes ago, booface said:
Why not release?
bothToo OP
-
1
-
-
Hey there! Wanted to share this headshot aimbot I made for Call of Duty: Mobile. Not going to release.
Credits:
@Ted2 - For the amazing and flexible mod menu
love ya
- Ruit - For KittyMemory
- dogo - For SCLAlertView
If you want to make a hack using this menu download it here:
-
85
-
4
-
5
-
3
-
11
-
5
-
Hacking voids
in Help & Support
Posted
BL = Branch with Link
B = Branch
Learn about it on the instruction set