Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public void _Find_Renown()
  2. {
  3.     if (IsAttached)
  4.     {
  5.         int num = readInt(baseAddress + [a]);
  6.         int table = readInt(num + [b]);
  7.         int size = readInt(num + [c]);
  8.         int offset = (0x100022B6 % size) * 4;
  9.         if (table != 0)
  10.         {
  11.             int num4 = readInt(table + offset);
  12.            
  13.            
  14.             if (num4 != 0)
  15.             {
  16.                 int num5 = readInt(num4);
  17.                 //num5 = [num4]
  18.                 //num5 = 268444342 (0x100022B6)
  19.                
  20.                 if (num5 == 0x100022B6)
  21.                 {
  22.                     int num6 = readInt(num4 + 0x4);
  23.                     //num6 = 24A37E04
  24.                     //num4 = [num6] (24A37E04) - 0x4
  25.                     //num4 = 24A37E00
  26.                    
  27.                    
  28.                     if (num6 != 0)
  29.                     {
  30.                         int key = readInt(num6);
  31.                         // key = [num6]
  32.                         // key = 268438230 (0x10000AD6)
  33.  
  34.                         if (key == 0x10000AD6)
  35.                         {
  36.                             int infamy = readInt(num6 + 0x0C);
  37.                             // infamy 24A37E20[104705] = [num6 (24A37E14)] + 0x0C
  38.                         }
  39.                     }
  40.                 }
  41.             }
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement