Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/12/2024 in all areas

  1. My grandfather used to say: "Everything is new, this is long forgotten old."
    2 points
  2. Hi @derbeyonder, Good, you're on the right track. You need to remember that method/function usually starts with 'PUSH' and ends with 'POP' or if you find another 'PUSH' it means that you're reaching another method/function. So, find any 'MOV' instruction beetween both 'PUSH', and make sure that it contains 'R3', something like this: MOV ..., R3 and change the 'R3' to '#0'
    1 point
  3. That's a pointer. You're on the right track... Follow it.
    1 point
  4. Fairly certain dump is incomplete and of no use... Hybridclr https://github.com/AkiKurisu/HybridCLR_IL2CPP_Modding But even with that, I don't think you'll have much luck either.
    1 point
  5. No, i just saw when exploring
    1 point
  6. It is possible with GG if that helps you any...
    1 point
  7. I want to use Qword in Pointer Search, but only dword appears
    1 point
  8. Pointer is jump address. For 32bit programs, address is 4 bytes DWORD. For 64bit programs, address is 8 bytes QWORD
    1 point
  9. it's none, that's mean it's 32bit game.. i watch a tutorial video in youtube, it's like cheating game via fields offset dump.cs, i do all step, but it's failed when using pointer search, in the video, it's shows qword in the pointer search, but mine is different... it's only shows dword
    1 point
  10. 64bit game pointer search use Qword. 32bit game pointer search use Dword. Which are you? if next to the game process name on the top left corner near the game logo had [x64] then its 64bit game. if none then its 32bit game and use Dword.
    1 point
  11. 1 point
  12. Like first and then download? I'm already laughing.
    1 point
  13. Hi there! Which game is it? Not all games are the same to find it. The game has the same function but in different values. First of all you need to know somethings about your game. does your game has a aim assist already? yes - then aim assist can be found because its already written in the game code. no - then aim assist can not be found because it is not written in the code unless there is a magical option in the code that says to put off aim assist(most likely not), and GG does not let you "add" code. You have usually 2 values that can give you aim assist. aim assist starting from the main lobby (not changing value even if you leave the match) aim assist starting from in the match (changing value every time you leave the match) Now option 1 is the best one for you in case you want to put it into a script and let other use it. Why are there 2 or even more values that give the same hack? For this you have to check the logic of a game, it usually goes like this: open app loads main data -- in this process the lobby date and all the other necessarily things get loaded, if the game has 2 different values for the same hack(aim assist) then you can already edit the non changing the value from out of the lobby. enters main menu/lobby -- in this process nothing particular happens because everything is already loaded during the loading of the game data (step 2) enters a match -- in this process the data of for the match will start to load, so this means that 90% that loads in/during and for the match will also disappear when the match will be finished. Now that we have that out of the way you should do the following to get a idea of which values could be responsible for the aim assist. Go in a match and search the value of your bullets. There is a 90% chance that the value format is either dword or float. and a other 90% chance that the memory range would be either Ca(C ALLOC) or A(Annonymous) you need to figure that out for your self. Then after you found the value of your bullets you will need to go to its address. Usually you will find all the information that is needed about the gun around that address you jumped to. Like 5 to 10 lines above and/or below the original address. You have to select and save all the values that are 10 addresses above or below the original addresses and have between the following float numbers: 0.01 - 4 (aim assist value is usually not higher then 4 float, does not even reach 3 float) Copy all those values and search them 1 by 1 again in the lobby and edit them below/above there original value and usually you will find aim lock or aim bot. I hope you got the necessarily information, Regards, WhoKnowsWho
    1 point
  14. Debug it and find the needed offset
    0 points
  15. Hello my friends I want to ask something.there is a game called madout2 and a hack called speed with gun now I want to convert it into offset it's value is 0.04, range anonymous,type float, address is 5F930DD0 so from which will I take the lib like from xa ca cb ps?
    -1 points
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.