Search results

  1. Solved How to mod String returns in il2cpp.so?

    Thanks a lot! Sorry for posting simple questions. How do I change it to solved?
  2. Solved How to mod String returns in il2cpp.so?

    Hi, thanks a lot for the help earlier about float and double returns. Now I understand how double and float works and how to get an ideal value. I am going further trying to find the hex codes for methods of returning String. I want to return a string of "Po", I tried hex convertors and did not...
  3. Solved How to mod libil2cpp.so when its returning double?

    I found my final answer. return 2.000xxxxxx 00 10 44 E3 1E FF 2F E1 return 131072.070218983 00 11 44 E3 1E FF 2F E1 return 8.5c 00 12 44 E3 1E FF 2F E1 Honestly, I still don't understand how the hex code "00 11 44 E3 1E FF 2F E1" translates to "return 131072.070218983". I understand the...
  4. Solved How to mod libil2cpp.so when its returning double?

    I don't understand how " 80 1e " is translated into 1.38*10^70. I want a smaller number, like 4*10^10... I tried to use hex convertor, but I don't quite understand
  5. Solved How to mod libil2cpp.so when its returning double?

    I tried on this method. double = 80 1e 44 E3 1E FF 2F E1. returns a large number: 7A 14 04 E3 1E FF 2F E1: This is what i get. The above double number is working! However, I can't see how do we get this number from double to hex..
  6. Solved How to mod libil2cpp.so when its returning double?

    May I ask pls, float = 80 0e 44 E3 1E FF 2F E1. double = 80 1e 44 E3 1E FF 2F E1. What are these number in decimal?
  7. Solved How to mod libil2cpp.so when its returning double?

    I will play with the hex convertor to understand the difference. I need to go back and learn my assembly language knowledge:face26:
  8. Solved How to mod libil2cpp.so when its returning double?

    This is probably true. I need to learn more about how to hook and how to understand it. Thanks!
  9. Solved How to mod libil2cpp.so when its returning double?

    Thank you very much! I will try it today
  10. Solved How to mod libil2cpp.so when its returning double?

    Hi, I am new to modding games, and I found it very interesting. I have tried modding a game, and I successfully changed the return value for int types. For any method returning int, I made the following hex code and had a success. 00 00 A0 E1 1E FF 2F E1 = NOP 00 00 A0 E3 1E FF 2F E1 = False...
  11. Tutorial ll2Cpp Dump + Modding

    Thank you. I tried using HEX convertor, and got myself a simple list. Integers 00 00 A0 E1 1E FF 2F E1 = NOP 00 00 A0 E3 1E FF 2F E1 = False or number 0 01 00 A0 E3 1E FF 2F E1 = True or number 1 02 00 A0 E3 1E FF 2F E1 = number 2 0A 00 A0 E3 1E FF 2F E1 = number 10 0F 00 A0 E3 1E FF 2F E1 =...
  12. Tutorial ll2Cpp Dump + Modding

    Hi king, I am having a question. I have successfully modded a game, but I can't figure out how to change the return value of a float/double type method. I only success in int returns. Like I want to return a 999.0 float, 44 7A 00 00 = 999.0 HEX: 7A 04 04 E3 1E FF 2F E1 00 00 00 00 = 0.0 00 00...