Results 1 to 12 of 12
  1. #1
    med5014's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    377
    My Mood
    Twisted

    Cool Teleport Source Code

    if this code help you !
    Make sure that you press Thanks On my Thread :)
    Cerdit
    ViinnyAndRoots

    Code:
    #include <Windows.h>
    float X[4], Y[4], Z[4];
    
    void Teleport()
    {
    	while(1)
    	{
    if (GetAsyncKeyState(VK_UP)) //Teleport
    
     {
      
     X[0] = *(float*)(*(DWORD*)(0x00A249F4) + 0x0);
     X[1] = *(float*)(*(DWORD*)(0x00A249F4) + 0x8);
     Y[0] = *(float*)(*(DWORD*)(0x00A249F4) + 0x10);
     Y[1] = *(float*)(*(DWORD*)(0x00A249F4) + 0x18);
     Z[0] = *(float*)(*(DWORD*)(0x00A249F4) + 0x20);
     Z[1] = *(float*)(*(DWORD*)(0x00A249F4) + 0x28);
     }
     
     if (GetAsyncKeyState(VK_RIGHT))
    
     {
     *(float*)(*(DWORD*)(0x00A249F4) + 0x0)  = X[0];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x8)  = X[1];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x10) = Y[0];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x18) = Y[1];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x20) = Z[0];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x28) = Z[1];
     }
    
     if (GetAsyncKeyState(VK_DOWN))
    
     {
     X[2] = *(float*)(*(DWORD*)(0x00A249F4) + 0x0);
     X[3] = *(float*)(*(DWORD*)(0x00A249F4) + 0x8);
     Y[2] = *(float*)(*(DWORD*)(0x00A249F4) + 0x10);
     Y[3] = *(float*)(*(DWORD*)(0x00A249F4) + 0x18);
     Z[2] = *(float*)(*(DWORD*)(0x00A249F4) + 0x20);
     Z[3] = *(float*)(*(DWORD*)(0x00A249F4) + 0x28);
     }
     
     if (GetAsyncKeyState(VK_LEFT))
    
     {
     *(float*)(*(DWORD*)(0x00A249F4) + 0x0)  = X[2];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x8)  = X[3];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x10) = Y[2];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x18) = Y[3];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x20) = Z[2];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x28) = Z[3];
     }
     Sleep(1);
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if (dwReason == DLL_PROCESS_ATTACH ) {
            CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Teleport, 0,0,0);
        }
        return 1;
    }
    Last edited by med5014; 07-15-2016 at 10:03 PM.
    That's True We Are Gamers !
    But We Are Hackers Also !


  2. The Following User Says Thank You to med5014 For This Useful Post:

    jhoowqwe (07-15-2016)

  3. #2
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,009
    My Mood
    Innocent
    Quote Originally Posted by med5014 View Post
    This My First Code !
    i have work for it
    So , if this code help you !
    Make sure that you press Thanks On my Thread
    Code:
    //////////////////////////////////////////////////
    //	C/C++ Language
    //	Site: https://*****.org
    //////////////////////////////////////////////////
    
    #include <Windows.h>
    float X[4], Y[4], Z[4];
    
    void Teleport()
    {
    	while(1)
    	{
    if (GetAsyncKeyState(VK_UP)) //Teleport
    
     {
      
     X[0] = *(float*)(*(DWORD*)(0x00A249F4) + 0x0);
     X[1] = *(float*)(*(DWORD*)(0x00A249F4) + 0x8);
     Y[0] = *(float*)(*(DWORD*)(0x00A249F4) + 0x10);
     Y[1] = *(float*)(*(DWORD*)(0x00A249F4) + 0x18);
     Z[0] = *(float*)(*(DWORD*)(0x00A249F4) + 0x20);
     Z[1] = *(float*)(*(DWORD*)(0x00A249F4) + 0x28);
     }
     
     if (GetAsyncKeyState(VK_RIGHT))
    
     {
     *(float*)(*(DWORD*)(0x00A249F4) + 0x0)  = X[0];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x8)  = X[1];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x10) = Y[0];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x18) = Y[1];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x20) = Z[0];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x28) = Z[1];
     }
    
     if (GetAsyncKeyState(VK_DOWN))
    
     {
     X[2] = *(float*)(*(DWORD*)(0x00A249F4) + 0x0);
     X[3] = *(float*)(*(DWORD*)(0x00A249F4) + 0x8);
     Y[2] = *(float*)(*(DWORD*)(0x00A249F4) + 0x10);
     Y[3] = *(float*)(*(DWORD*)(0x00A249F4) + 0x18);
     Z[2] = *(float*)(*(DWORD*)(0x00A249F4) + 0x20);
     Z[3] = *(float*)(*(DWORD*)(0x00A249F4) + 0x28);
     }
     
     if (GetAsyncKeyState(VK_LEFT))
    
     {
     *(float*)(*(DWORD*)(0x00A249F4) + 0x0)  = X[2];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x8)  = X[3];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x10) = Y[2];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x18) = Y[3];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x20) = Z[2];
     *(float*)(*(DWORD*)(0x00A249F4) + 0x28) = Z[3];
     }
     Sleep(1);
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if (dwReason == DLL_PROCESS_ATTACH ) {
            CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Teleport, 0,0,0);
        }
        return 1;
    }
    U have work for It ? Only Copy & Paste from other site ? This also not work bcause the address Is outdated .

    Notes : This also already post before , likely date 06/06/2016 HERE .
    Last edited by Heroes; 07-15-2016 at 02:02 PM.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  4. #3
    ScorpionVenom789's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    In Your Mind
    Posts
    731
    Reputation
    10
    Thanks
    1,418
    My Mood
    Cheerful
    Hahaha, lol

  5. #4
    C0DEBREAKER's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    73
    Reputation
    10
    Thanks
    818
    My Mood
    Sneaky
    nice leecher!
    BRYAN

  6. The Following User Says Thank You to C0DEBREAKER For This Useful Post:

    RuShi (07-15-2016)

  7. #5
    MafiaBoy BlackShit's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Secret
    Posts
    629
    Reputation
    10
    Thanks
    2,434
    My Mood
    Amazed
    Haha Leecher Detected
    We're Anonymous
    We're Hacker, We're Not Going To Stop!
    Bcaus We're Hacker!

    AOA Music

  8. The Following User Says Thank You to MafiaBoy BlackShit For This Useful Post:

    jhoowqwe (07-16-2016)

  9. #6
    kelvindumeys's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    SO WHAT TO DO WITH THAT THING? COPY PASTE IN NOTEPAD AND PUT .DLL AND PUT IN INJECTOR CAN TELEPORT? PLS HELP I REALLY NID TELEPORT HACK. SCORPNATION 3.0,4.0 NOT WORKING FOR ME.!~ HELP GUYS

  10. #7
    Blackshothacker2913's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Bro for example my hacker forever dll file is patch but I want to make a new dll can I copy the code from hacker forever dll.

  11. #8
    kelvindumeys's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    please create new dll file for teleport and release. scorpnation not working for me.. please send new dll file for teleport.. pls release! THanks!

  12. #9
    ScorpionVenom789's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    In Your Mind
    Posts
    731
    Reputation
    10
    Thanks
    1,418
    My Mood
    Cheerful
    Quote Originally Posted by kelvindumeys View Post
    SO WHAT TO DO WITH THAT THING? COPY PASTE IN NOTEPAD AND PUT .DLL AND PUT IN INJECTOR CAN TELEPORT? PLS HELP I REALLY NID TELEPORT HACK. SCORPNATION 3.0,4.0 NOT WORKING FOR ME.!~ HELP GUYS
    https://www.mpgh.net/forum/showthread.php?t=1138070

    I already release new one ..and make sure press left and right arrow to save location then up and down for load the location ..I forgot to change the hotkeys at the thread

  13. #10
    kelvindumeys's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0

    bro please help me!

    send me new teleport dll. for me that scorpnation my comp doesn't work. that pop up not coming up when injected. pls send new one. thx .. pls bro only u can help

    - - - Updated - - -

    but can u make another one cuz that msg doesn't open (that pop up) does not pop up that message. pls send another version pls pls

  14. #11
    failnoobgamer's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    china #1
    Posts
    533
    Reputation
    10
    Thanks
    5,880
    My Mood
    Happy
    Quote Originally Posted by kelvindumeys View Post
    SO WHAT TO DO WITH THAT THING? COPY PASTE IN NOTEPAD AND PUT .DLL AND PUT IN INJECTOR CAN TELEPORT? PLS HELP I REALLY NID TELEPORT HACK. SCORPNATION 3.0,4.0 NOT WORKING FOR ME.!~ HELP GUYS
    paste code Command Prompt and run blackshot as admin

  15. #12
    zhou111's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    0
    nice very useful

    - - - Updated - - -

    nice very useful man

Similar Threads

  1. Replies: 13
    Last Post: 02-22-2010, 10:59 AM
  2. {Realease} CA Teleport Source code::
    By headsup in forum C++/C Programming
    Replies: 13
    Last Post: 10-29-2009, 04:51 AM
  3. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  4. keylogger source code
    By obsedianpk in forum WarRock - International Hacks
    Replies: 8
    Last Post: 10-24-2007, 02:31 PM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM