Remove the Movelist (M button)?

Results 1 to 12 of 12
  1. #1
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Remove the Movelist (M button)?

    Is there a way to remove the /move list?
    I mean that list that shows when you press M.

    Also, same question for key C, can you make it so that stats won't show?
    (I'm making a custom stat screen).


  2. #2
    Proficient Member 007jodex is offline
    MemberRank
    Sep 2008 Join Date
    158Posts

    Re: Remove the Movelist (M button)?



    Ofc. Need some research for main, cuz there are 2 function that seems be related with that feature.. First is "Interface Draw" Second "Mouse Over over interface"... So..

  3. #3
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Re: Remove the Movelist (M button)?

    Hey, thanks for the help!
    Where did you find that line?

  4. #4
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    356Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by martinx09 View Post
    Hey, thanks for the help!
    Where did you find that line?
    depend your main u using

  5. #5
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Re: Remove the Movelist (M button)?

    I'm using 1.03k

  6. #6
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    356Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by martinx09 View Post
    I'm using 1.03k
    Code:
    #define pWindowThis    ((LPVOID(*)()) 0x007747FF)
    #define pCheckWindow   ((bool(__thiscall*)(LPVOID This, int Code)) 0x00772B6D)
    #define pCloseWindow   ((int(__thiscall*)(LPVOID This, int Code)) 0x007736EC)
    #define pOpenWindow    ((int(__thiscall*)(LPVOID This, int Code)) 0x00772D47)
    example: MoveList = 2,

    find asm:
    push 2
    call pWindowThis

    u can try nop or rewrite code to disable warp window

  7. #7
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by myheart View Post
    Code:
    #define pWindowThis    ((LPVOID(*)()) 0x007747FF)
    #define pCheckWindow   ((bool(__thiscall*)(LPVOID This, int Code)) 0x00772B6D)
    #define pCloseWindow   ((int(__thiscall*)(LPVOID This, int Code)) 0x007736EC)
    #define pOpenWindow    ((int(__thiscall*)(LPVOID This, int Code)) 0x00772D47)
    example: MoveList = 2,

    find asm:
    push 2
    call pWindowThis

    u can try nop or rewrite code to disable warp window
    Damn, great help dude, thanks a lot :)

  8. #8
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Re: Remove the Movelist (M button)?

    Edit: Working great, disabled MoveList (2) and Character Stats Window (16) with the OpenWindow func.
    It works on both pushing the key and pressing the button situations :)
    Last edited by martinx09; 07-08-17 at 08:39 AM.

  9. #9
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    356Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by martinx09 View Post
    Main crashes when I open any window.
    lol,
    1. i think you not understand that code
    for example
    if(balala)
    {
    pOpenWindow(pWindowThis,Window Id);
    }
    and if you don't know how about that, why you not just
    SetByte((0x007512B4+1),any ID number); // 0x007512B4 <- open 2 when press M
    noob code but really work

  10. #10
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by myheart View Post
    lol,
    1. i think you not understand that code
    for example
    if(balala)
    {
    pOpenWindow(pWindowThis,Window Id);
    }
    and if you don't know how about that, why you not just
    SetByte((0x007512B4+1),any ID number); // 0x007512B4 <- open 2 when press M
    noob code but really work
    Hey thanks, I actually made it work a minute before you answered lol
    I hooked the pOpenWindow func to all the calls, was a bit more work,
    but I can use it to check any of the windows :)

  11. #11
    0x4D696E68 myheart is offline
    MemberRank
    Jun 2017 Join Date
    356Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by martinx09 View Post
    Hey thanks, I actually made it work a minute before you answered lol
    I hooked the pOpenWindow func to all the calls, was a bit more work,
    but I can use it to check any of the windows :)
    u can type pCheckWindow(..,..) anywhere in your project, no need hook to func

  12. #12
    c# Programmer martinx09 is offline
    MemberRank
    Aug 2008 Join Date
    391Posts

    Re: Remove the Movelist (M button)?

    Quote Originally Posted by myheart View Post
    u can type pCheckWindow(..,..) anywhere in your project, no need hook to func
    Well as I said I'm still learning,
    what I did worked so I'm happy with it any ways :)



Advertisement