Results 1 to 2 of 2
  1. #1
    erwannludovic
    erwannludovic is offline
    New member
    Join Date
    2011 Mar
    Posts
    4
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0

    New offset after titan update

    Hi all, new offset ;D

    Spoiler


  2. #2
    zysus
    zysus is offline
    Guest
    Join Date
    2011 Feb
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Can you help me to discover these variants to update the code?
    my program OLLYDBG or does not work in my PC, or to be crazy and does not want to work .........
    thx and sorry my poor lenguage i am no native

    PHP Code:
    //uses a bag item in-game
    void UseBagItem(int SlotIndex
    {
        
    int Function_Addr pBag_UseItem;
        
    __asm
        
    {
                
    mov eax0x00000000
                mov ecx
    0x010C1570
                mov edx
    0x0A7C73D0 //diff
                
    mov ebxSlotIndex    //slot number

                
    mov esi0x0B8CE790 //diff
                
    mov edi0x010C89E0

                push 1
                push SlotIndex     
    //slot number
                
    push 0                //Something, but idk what

                
    call [Function_Addr]
        }

    PHP Code:
    //Travels to point in game, can go to another map
    void MapAutoRoute(int MapIDfloat Xfloat Y)
    {
        
    float X_Map_Coord * (float)(25.0/16.0);
        
    float Y_Map_Coord * (float)(25.0/16.0);

        
    int Function_Addr pMap_AutoRoute;
        
    __asm
        
    {
            
    //magic stuff
            
    mov eax0x00E555F8
            mov ecx
    0x00E555F8
            mov edx
    0x00000000 //huh?
            
    mov ebx0x00000078 //changes, but dont know why
                                //96 = 150,160
                                //AA = 170,160
                                //B4 = 180,160
                                //96 = 180,150
                                //A0 = 180,160
            
    mov esi0x010B1048
            mov edi
    0x010B0B18

            push Y_Map_Coord
            Push X_Map_Coord     
    //float Y Coord
            
    Push MapID            //Map Id
            
    Call [Function_Addr]
        }


Similar Threads

  1. [Guide] New BOI offset after update !
    By erwannludovic in forum Battle of the Immortals
    Replies: 2
    Last Post: 2011-05-13, 05:27 AM
  2. [Tutorial] Warhammer Pointer and Offset
    By Dwar in forum Game Researching Tutorials
    Replies: 1
    Last Post: 2011-03-06, 04:42 AM
  3. [help] Offset logger
    By LamKa in forum C/C++
    Replies: 1
    Last Post: 2010-12-11, 08:29 AM
  4. IDA offset finding examples
    By Dwar in forum Programming Tutorials
    Replies: 0
    Last Post: 2010-11-20, 05:00 AM
  5. [Snippet] Address Offset Retreiver
    By Dwar in forum C/C++
    Replies: 0
    Last Post: 2010-11-09, 07:59 AM

Posting Permissions

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