Results 11 to 14 of 14

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10

    Talking [Delphi] Aika Radar, Bot framework

    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:
    • 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;
    [/list:u]

    P.S. Delphi 2009, standart components

    Please register or login to download attachments.

    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  2. The Following 4 Users Say Thank You to Dwar For This Useful Post:


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •