Results 1 to 6 of 6
  1. #1
    Aiman's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Rainbow ¬_¬
    Posts
    925
    Reputation
    10
    Thanks
    1,607
    My Mood
    In Love

    How to put msgbox? :P

    Im beginner so dont bully me whr do i put the msgbox code in this code?

    Code:
    #include <windows.h>
    
    bool TeamESP = false;
    
    void Start()
    {
        while(1)
        {
            if(GetAsyncKeyState(VK_INSERT)&1)
            {
                if(TeamESP = !TeamESP)
                {
                    TeamESP = true;
                }
                else
                {
                    TeamESP = false;
                }
    
            }
    
            if(TeamESP == true)
            {
                *(BYTE*)(*(DWORD*)(CENSORED)+CENSORED)= 01;
                *(BYTE*)(CENSORED)= 01;
            }
            else if(TeamESP == false)
            {
                *(BYTE*)(*(DWORD*)(CENSORED)+CENSORED)= 00;
                *(BYTE*)(CENSORED)= 00;
            }
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if (dwReason == DLL_PROCESS_ATTACH ) {
            CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Start, 0,0,0);
        }
        return 1;
    }

    My Achievements

    Get 100 thanks ✔
    Get 200 thanks ✔
    Get 300 thanks ✔
    Get 400 thanks ✔
    Get 500 thanks ✔
    Get 1000 thanks ✔
    Get 2000 thanks ✘
    Get 5000 thanks ✘

  2. #2
    ScorpionVenom789's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    In Your Mind
    Posts
    731
    Reputation
    10
    Thanks
    1,418
    My Mood
    Cheerful
    Code:
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if (dwReason == DLL_PROCESS_ATTACH ) {
    MessageBox(NULL, TEXT("Your Message here"), TEXT("Your title here"), 0);
            CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Start, 0,0,0);
        }
        return 1;
    }

  3. The Following User Says Thank You to ScorpionVenom789 For This Useful Post:

    Aiman (06-14-2016)

  4. #3
    ReseviC's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    BEClient.dll
    Posts
    354
    Reputation
    10
    Thanks
    3,430
    My Mood
    Busy
    Quote Originally Posted by astron52 View Post
    Im beginner so dont bully me whr do i put the msgbox code in this code?

    Code:
    #include <windows.h>
    
    bool TeamESP = false;
    
    void Start()
    {
        while(1)
        {
            if(GetAsyncKeyState(VK_INSERT)&1)
            {
                if(TeamESP = !TeamESP)
                {
                    TeamESP = true;
                }
                else
                {
                    TeamESP = false;
                }
    
            }
    
            if(TeamESP == true)
            {
                *(BYTE*)(*(DWORD*)(CENSORED)+CENSORED)= 01;
                *(BYTE*)(CENSORED)= 01;
            }
            else if(TeamESP == false)
            {
                *(BYTE*)(*(DWORD*)(CENSORED)+CENSORED)= 00;
                *(BYTE*)(CENSORED)= 00;
            }
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if (dwReason == DLL_PROCESS_ATTACH ) {
            CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Start, 0,0,0);
        }
        return 1;
    }
    }
    MessageBox(NULL, TEXT("Your Message here"), TEXT("Your title here"), 0);
    return 1;

  5. The Following User Says Thank You to ReseviC For This Useful Post:

    Aiman (06-14-2016)

  6. #4
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if (dwReason == DLL_PROCESS_ATTACH ) {
    CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Start, 0,0,0);
    MessageBox(NULL, L"MessageBox Text", L"MessageBox caption", MB_OK;
    }
    return 1;
    }
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  7. The Following User Says Thank You to COD3RIN For This Useful Post:

    Aiman (06-14-2016)

  8. #5
    Aiman's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Rainbow ¬_¬
    Posts
    925
    Reputation
    10
    Thanks
    1,607
    My Mood
    In Love
    Quote Originally Posted by ScorpionVenom789 View Post
    Code:
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if (dwReason == DLL_PROCESS_ATTACH ) {
    MessageBox(NULL, TEXT("Your Message here"), TEXT("Your title here"), 0);
            CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Start, 0,0,0);
        }
        return 1;
    }
    Quote Originally Posted by Ein_Silk View Post

    }
    MessageBox(NULL, TEXT("Your Message here"), TEXT("Your title here"), 0);
    return 1;
    Quote Originally Posted by COD3RIN View Post
    BOOL WINAPI DllMain ( HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if (dwReason == DLL_PROCESS_ATTACH ) {
    CreateThread (0,0, ( LPTHREAD_START_ROUTINE ) Start, 0,0,0);
    MessageBox(NULL, L"MessageBox Text", L"MessageBox caption", MB_OK;
    }
    return 1;
    }
    Thank you so much guys.. // @Minerva @Smoke close.

    My Achievements

    Get 100 thanks ✔
    Get 200 thanks ✔
    Get 300 thanks ✔
    Get 400 thanks ✔
    Get 500 thanks ✔
    Get 1000 thanks ✔
    Get 2000 thanks ✘
    Get 5000 thanks ✘

  9. #6
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Requested closure.

    /Closed.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

  10. The Following 2 Users Say Thank You to Smoke For This Useful Post:

    Aiman (06-14-2016),RuShi (06-14-2016)

Similar Threads

  1. How to put these in~??
    By noobi4life in forum Visual Basic Programming
    Replies: 4
    Last Post: 12-12-2007, 05:54 PM
  2. how to put my hack undetected?
    By leesan in forum WarRock - International Hacks
    Replies: 3
    Last Post: 10-18-2007, 07:24 AM
  3. How to put Animated pic on another pic?
    By thechewu in forum Art & Graphic Design
    Replies: 18
    Last Post: 09-24-2007, 11:40 PM
  4. How to put blood in KWR
    By maluxo in forum WarRock Korea Hacks
    Replies: 2
    Last Post: 08-05-2007, 02:12 PM
  5. How to put anti kick in my trainer
    By dikkind in forum WarRock - International Hacks
    Replies: 0
    Last Post: 07-02-2007, 02:25 PM