Advertisement
Guest User

Untitled

a guest
May 19th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. /*
  2. How to get into the UpdateAccuracyPenalty sub:
  3. string search: "%.5f\t%d\t%.5f\t%.10f\t%.10f\n" and xref it
  4.  
  5. .text:103DAD6F E8 6C 78 21 00 call sub_105F25E0 <-- xref this it has two the current one youre in and the one we want
  6. .text:103DAD74 8B 44 24 30 mov eax, [esp+300h+var_2D0]
  7. .text:103DAD78 83 EC 10 sub esp, 10h
  8. .text:103DAD7B F3 0F 5A C0 cvtss2sd xmm0, xmm0
  9. .text:103DAD7F F3 0F 2C 80 20 33 00 00 cvttss2si eax, dword ptr [eax+3320h]
  10. .text:103DAD87 F2 0F 11 44 24 08 movsd qword ptr [esp+8], xmm0
  11. .text:103DAD8D F3 0F 10 44 24 4C movss xmm0, [esp+310h+var_2C4]
  12. .text:103DAD93 0F 5A C0 cvtps2pd xmm0, xmm0
  13. .text:103DAD96 F2 0F 59 05 00 DC C2 10 mulsd xmm0, ds:qword_10C2DC00
  14. .text:103DAD9E F2 0F 11 04 24 movsd qword ptr [esp+310h+var_310], xmm0
  15. .text:103DADA3 50 push eax
  16. .text:103DADA4 A1 D0 98 CA 10 mov eax, off_10CA98D0
  17. .text:103DADA9 83 EC 08 sub esp, 8
  18. .text:103DADAC F3 0F 10 40 10 movss xmm0, dword ptr [eax+10h]
  19. .text:103DADB1 0F 5A C0 cvtps2pd xmm0, xmm0
  20. .text:103DADB4 F2 0F 11 04 24 movsd [esp+31Ch+var_31C], xmm0
  21. .text:103DADB9 68 64 B0 B2 10 push offset a5fD5f10f10f ; "%.5f\t%d\t%.5f\t%.10f\t%.10f\n"
  22.  
  23. Now you're in UpdateAccuracyPenalty now rename the sub and run classinformer to get the right vtable and count to get the index
  24. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement