コード例 #1
0
ファイル: EQmemory.cs プロジェクト: abronte/EQ2Bot
 public int maxHp()
 {
     MemoryLoc max_hp = new MemoryLoc(eqproc, pPlayer.GetInt32() + 0x8C);
     return max_hp.GetInt32();
 }
コード例 #2
0
ファイル: EQmemory.cs プロジェクト: abronte/EQ2Bot
 public int currentHp()
 {
     MemoryLoc cur_hp = new MemoryLoc(eqproc, pPlayer.GetInt32() + 0x88);
     return cur_hp.GetInt32();
 }