Aika Radar, Bot framework
One year ago I wrote big project for another online game and make small framework which can be used for bots, radar creation. It’s just an example how to retrieve data from memory (dword, coordinates, read strings etc), how to organize it (records, functions, data arrays) and how to manipulate (threads).
I made small correction for Aika: reading char data and draft function for mobs.
Will be suitable for everyone who wants to understand basics of bot creation etc.
Features:
[list][*]Use methods like Client.GetNPCLocal to retrieve e.g. NPC data[*]Suitable for multi bot (classes are used) [*]Read memory:
[/list:u]
- function getBYTE(Hdl, aPointer: Cardinal): byte;
- function getBYTE2(Hdl, aPointer: Cardinal): DWORD; // read 2 bytes
- function getWORD(Hdl, aPointer: Cardinal): Word;
- function getDWORD(Hdl, aPointer: Cardinal): DWORD;
- function getSINGLE(Hdl, aPointer: Cardinal): single;
- function getSTRING(Hdl, aPointer: Cardinal; length: integer): WideString;
- function getVector3(Hdl, aPointer: Cardinal): TdLocation;
P.S. Delphi 2009, standart components
Please register or login to download attachments.