Rappelz Non Static Pointer Help

01/12/2012 18:38 rover2341#1
About
1) I Am working on a Rappelz Bot(C#).
2) I am currently Using "Cheat Engine" to find memory Paths.
3) I have found some Static Locations in memory that give Data for the bot
4) I have found some Non Static Locations of Memory by traceing back to a static location and using offsets.

Values my Bot can already get
  • Player Name
  • Player HP/Max HP
  • Player MP/Player Max MP
  • Bag Space/Max Bag Space
  • Player X/Player Y Location
  • Yaw/Pitch of Camera
  • Pet HP/Pet Max HP
  • Pet Mana/Pet Max Mana
  • Target Name

My Request

I am easily able to find the target HP, Using Cheat Engine by selecting my self as a target and searching for my max hp, and then selecting a weak enemy and putting search for value less then my HP. The Address is not Static. I am having a hard time tracing it back to a static address with off sets.

Currently I mannuely look it up and plug it in my program. I am trying to find a path to a static Memory Location that my bot can use.

Once I plug that value in my Bot I have.
  • Target HP/Target Max HP
  • Target Mana/Target Max Mana
  • Target Level (Only Works For Mobs)
01/14/2012 15:44 dido1998#2
i didn't understand any word
01/14/2012 17:57 rover2341#3
*SOLVED

I Found a way to repeat the steps i was doing in "Cheat Engine".
I Found a Const string in Memory that is always the same distance away from the value i was looking for.

Then in my Bot Program Instead of using a memory path, as i call it, It searches all the memory of the game to find the string, and then plugs in the offset.

I still wish i had a memory path, as this takes my program a full 1-5 seconds to find it. Everything that uses memory paths, are instant.

Anyway If that helps anyone.