Results 1 to 8 of 8

Thread: Making Farm Bot

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    paulosousa12
    paulosousa12 is offline
    Guest
    Join Date
    2011 Jul
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Making Farm Bot

    Hi all,
    So my holidays have arrived, and i decided to start a small personal project, to create a simple (but efficient) mat farming bot. I'm using AutoIt, it seemed the language with more examples and source codes i could find (don't know the language, but knowing many other programming languages the language won't be a problem).

    Used CE and read some stuff, and already can read all the player info from my char

    Before starting of working on actions i was planing to create a function to allow the search for mats/loot in general. Using some examples, i managed to get this:

    Code:
    $pointer = _MemoryRead(_MemoryRead(_MemoryRead(_MemoryRead($Mem_Address, $Mem_Open)+0x8, $Mem_Open)+0x28, $Mem_Open)+0x14, $Mem_Open) ;reads value at memory address
    
    $item = _MemoryRead(_MemoryRead($pointer+$i*4, $Mem_Open) + 0x4, $Mem_Open)
    $ITEM_NAME = _MemoryRead(_MemoryRead($item_base + 0x164, $Mem_Open), $Mem_Open, 'wchar[30]') ;Item-Name
    My problem is that it seems i don't find any mats/loot :/ For what i'm seeing i must be looking at the wrong addresses

    Any help would be appreciated

    Cumps

Posting Permissions

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