Guest User

Pointers.cs

a guest
Jan 28th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.87 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Bot {
  7.     public class Pointers {
  8.         /// <summary>
  9.         /// All offsets for
  10.         ///  3.3.5 (12340)
  11.         /// </summary>
  12.         ///
  13.         internal enum General {
  14.             IsInGame = 0x00BD0792,
  15.         }
  16.  
  17.         internal enum StaticPointers {
  18.             CurrentTargetGUID = 0x00BD07A8,             // 3.3.5a 12340
  19.             LocalPlayerGUID = 0x00CA1230,               // 3.3.5a 12340
  20.         }
  21.  
  22.         internal enum ObjectManager {
  23.             CurMgrPointer = 0xC79CE0,                 // 3.3.5
  24.             CurMgrOffset = 0x2ED0,                      // 3.3.5
  25.             FirstObject = 0xAC,
  26.             NextObject = 0x3C,                          // 3.3.5
  27.             LocalGUID = 0xC0                            // 3.3.5
  28.         }
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment