Пример #1
0
 public int maxHp()
 {
     MemoryLoc max_hp = new MemoryLoc(eqproc, pPlayer.GetInt32() + 0x8C);
     return max_hp.GetInt32();
 }
Пример #2
0
 public int currentHp()
 {
     MemoryLoc cur_hp = new MemoryLoc(eqproc, pPlayer.GetInt32() + 0x88);
     return cur_hp.GetInt32();
 }