eXhume Installation
eXhume is not your mothers Xunleashed. X injects into your process\game and runs - in the game. eXhume comes with a build in editor and debugger and runs outside the process\game. You can write code and leverage functions such that it will attach to your games process much like X did .. but you don't need to in most automation scenarios.
1) Go
Download eXhume.
2) Did you
get and install the Windows Debugger? Do it.
3) Fire it up, login, and look at the pretty debugger\editor.
4) Go read
Exhume Automation 101
5) Go look at the
sample scripts on the eXhume WIki.
6) You should now be somewhat familiar with eXhume.
VGExtreme Service
VGExtreme is an eXhume plugin that has been packaged as an .exe - it comes with what will look like it's own eXhume engine. VGExtreme exposes a number of pieces of information from Vanguard that you might like to use when automating your actions. Things like, your health, the targets health, distance and direction to you target.
1) Go
download VGExtreme.
2) Unpackage it into the same directory you run eXhume from.
3) Delete the exhumehelper.dll that is currently in that directory.
4) Did you delete the .dll? Reall, do it.
5) Make sure you have
MS .NET Framework Version 2.0 Redistributable Package.
6) Start Up Vanguard in windows mode and get into the world.
7) Run VGExtreme.exe - login just like you did for eXhume.
You will automagically have a sample script open, so just hit F5 and see the wonders that are wrought.
Scripting VGExtreme
Now that you have seen the power of VGExtreme you can start writing your own script. We suggest you start by modifying the VGExtreme.vbs script that is automagically loaded. You will notice that it makes a call out to a directory that was created after your first run of VGExtreme - /includes/VGService.vbs. This VGService script exposes the additional function calls that VGExtreme exposes to you.
Scripting Basics
eXhume, and subsequently VGExtreme support
VBScript and
JScript. Arguably you may use any language that the
Microsoft Script Host supports.
NOTE: C# is not supported under the MS Script host .. so at this point you can't use it in Exhume. Although the VGExtreme Plugin was written in Dot Net - don't go getting excited yet. You get to use MS Scripting for now.
Read here
For All Things Microst Scripting.