Search:

Type: Posts; User: Gordon`

Page 1 of 10 1 2 3 4

Search: Search took 0.07 seconds.

  1. Thread: Dump Files

    by Gordon`
    Replies
    9
    Views
    1,596

    there ya go. can be viewed with ida pro or...

    there ya go. can be viewed with ida pro or ollydbg.
    i did use my own dumper

    rar:...
  2. Replies
    16
    Views
    1,759

    oO why do ppl always want a new "ptc method" ? im...

    oO why do ppl always want a new "ptc method" ? im using since 2 years the same and it still works (calling it directly from class, pLTBase->RunConsoleCommand). sure nexon prevented us to call it...
  3. Replies
    7
    Views
    912

    there is a table in memory that stores objects of...

    there is a table in memory that stores objects of all players + npc. just find it and iterate thru
  4. Thread: MoveObject

    by Gordon`
    Replies
    14
    Views
    2,947

    [Release] yes it can. u can do so much shit when u hook...

    yes it can. u can do so much shit when u hook SetObjectPos
  5. Replies
    7
    Views
    485

    easy fix: put "static" before "bool fps =...

    easy fix: put "static" before "bool fps = false;". this makes the variable act like a global variable (in reality it is one), but its declared locally and only initialized once


    static bool fps =...
  6. Replies
    11
    Views
    1,527

    void CPush(constchar* cmd) => void...

    void CPush(constchar* cmd)
    =>

    void PushToConsole(const char* cmd)

    as freedompeace said, the error messages got all infos u need to fix the problem.

    constchar doesnt exist in c++, its const...
  7. Replies
    15
    Views
    1,022

    DWORD dwTempDevicePointer =...

    DWORD dwTempDevicePointer = g_pTools->dwFindPattern((DWORD)GetModuleHandle(0), 0x760000, (PBYTE)"\xA1\x00\x00\x00\x00\x89\x45\xF8\x8D", "x????xxxx");
    if(dwTempDevicePointer) {
    dwDevicePointer =...
  8. Thread: ChangePitch

    by Gordon`
    Replies
    13
    Views
    1,721

    [Release] calling convention is cdecl, that means you need...

    calling convention is cdecl, that means you need to fix the stack after calling the function. functionparameters * 4 = 8



    PUSH Pitch //push second parameter
    PUSH EAX ...
  9. Replies
    23
    Views
    1,242

    [Discussion] wow lol. you seriously dont know what ur talking...

    wow lol. you seriously dont know what ur talking about.
    better shut ur mouth before u blame yourself
  10. Replies
    7
    Views
    908

    search for any console command like...

    search for any console command like "RestartRender" and you'll find the cltbase just a few lines above.

    edit:


    375BC01C 8B0D 905D8F37 MOV ECX,DWORD PTR DS:[378F5D90] ; <--...
  11. Replies
    7
    Views
    908

    Yes EU, but this check is also present in NA. You...

    Yes EU, but this check is also present in NA. You can cleary see it when you look inside of CLTBase::RunConsoleCommand.
  12. Replies
    20
    Views
    1,379

    whats the point of disassembling my loader? hacks...

    whats the point of disassembling my loader? hacks arent stored in there. what are you trying to figure out?
    how to get the hacks into the loader => streaming. maybe you want to catch up the...
  13. Thread: Nexon Will End

    by Gordon`
    Replies
    63
    Views
    2,851

    [Discussion] my hack was just updated today. finally got...

    my hack was just updated today. finally got enough time to do it :)
  14. Replies
    8
    Views
    2,760

    [Source Code] looks like everyone elses hotkey hack. nothing...

    looks like everyone elses hotkey hack. nothing special on it except u crypt the strings.

    i would add a sleep into ur while loop or ur cpu usage goes high and causes the game to lag.
  15. Replies
    44
    Views
    2,255

    people get lazy and have a life. thats why no one...

    people get lazy and have a life. thats why no one releases hacks ;)
  16. Replies
    7
    Views
    908

    cant seem to find any other check except that it...

    cant seem to find any other check except that it checks the returnaddress of the function. i removed that check and im able to execute all console commands just fine.
  17. Replies
    7
    Views
    1,619

    you just need the address to ltbase. with ltbase...

    you just need the address to ltbase. with ltbase u get ltclient and with ltclient u get ltdrawprim
  18. Replies
    18
    Views
    1,735

    devicepointer hooking still works. hackshield is...

    devicepointer hooking still works. hackshield is just detecting it.
  19. Replies
    10
    Views
    1,008

    [Help] looks like shit. learn first c++ before u try to...

    looks like shit. learn first c++ before u try to code a hack. seriously, copy and pasting does not make u a coder.
  20. Replies
    50
    Views
    3,868

    how u know that there is no aimbot in my hack...

    how u know that there is no aimbot in my hack when u dont go to my site. you have an account there. well nvm, i just post an email and an ip..

    subcub97yahoo.com
    71.60.22.206

    u may compare it...
  21. Replies
    12
    Views
    1,082

    i guess he really needs attention.

    i guess he really needs attention.
  22. Replies
    50
    Views
    3,868

    u dont. you made this screenshot with using my...

    u dont. you made this screenshot with using my hack and used ms paint to draw ur own menu. poor poor

    edit: oh i just found u on my site and there are logs that u used the hack.
  23. Replies
    18
    Views
    1,617

    you can only copy/write 1, 2 or 4 bytes with mov....

    you can only copy/write 1, 2 or 4 bytes with mov.



    mov byte ptr [address], al
    mov word ptr [address], ax
    mov dword ptr [address], eax
  24. Thread: ASCII by addys

    by Gordon`
    Replies
    4
    Views
    937

    ?! rephrase ur question char text[100] = "";...

    ?! rephrase ur question


    char text[100] = "";
    memcpy(&text, (void*)address, 100);
    //in 'text' are now your 'ascii codes'
  25. Replies
    133
    Views
    22,042

    [Detected] you can fix that by doing a window hook and catch...

    you can fix that by doing a window hook and catch there your key events. hackshield does not detect that
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4