Recent content by roflmao1337

  1. Help! Track Network Traffic

    Hello, I sucessfully modified some functions in my apps Il2ccp.so file. However, those changes like getter methods are only visual, as they get overwritten by the server. For example there is a chest where I modified to always get the best weapon, but when I open it I only get a random one...
  2. Help! is it possible to see function calls of APK?

    Hello, I use Memu emulator to run an apk and I would like to see for example when I push a button, which functions get called afterwards. Is that possible somehow?
  3. Help! libil2cpp.so MOD problem game free fire

    how to check if and where a function is called?
  4. Help! Assembly-CSharp.dll vs dump.cs

    what is meant by xref? is that something in IDA Pro? in my file there are sometimes constants defined like public const float playerMoveSpeed = 6; // 0x0 they have no getter or setter. How can I change these values? I tried dnSpy but the compile back doesnt work if its a libil2cpp.so based game?
  5. Help! Assembly-CSharp.dll vs dump.cs

    Can you say why never mod the setter method? so far modding the getter was just doing visual effects but didnt change any real values. I want to find and mod a place where something like a reward is actually created, instead of just overwriting a get function that shows me my resource in the...
  6. Help! Assembly-CSharp.dll vs dump.cs

    Hello, I have used a Il2CppDumper to create those files out of an apk. Inspecting the .dll with dnSpy and the dump with Notepad++, they are both pretty much the same, apart from the way the code is written. I have an understanding question because I want to modify a function. the dump file...
  7. Help! Some basic modding questions

    Ok thank you for making this more clear. So far I found the basic methods to start the game in the java files, and the getter / setter for the resources in the libil2cpp. What Im still missing are triggers and the actual methods. I suspect the java code invokes some resource file (maybe xml?)...
  8. Help! Some basic modding questions

    Hello there, I found this place while attempting to mod a game myself for the first time and so far I digged through alot of threads / videos. However, I have some basic questions and it would be great if you could help me with them: I want to mod an online game that was built in Unity and is...
  9. Solved I need help with il2cpp modding values!

    so this means you have to replace the get method and not the place where the variable is declared?
  10. Tutorial ll2Cpp Dump + Modding

    does this work for online games?
  11. Tutorial [Videotutorial] How to dump and mod Il2cpp games (advanced modders only!)

    hello. I have a basic understanding question here: the "public bool get_isPurchaseable()" I guess is a method that the game executes once you select a car and then checks whether you can buy it or not. so the 4f9dac is the value where to find this method in the Hex file (?). When I search it...
  12. Help! value does't change (hard to explain)

    is it possible to find out which data is server sided and which isnt? and if he cant directly manipulate the value then maybe is it possible to change it indirectly? for example by a diamond creating reward where u increase the rewards value?