[Need help]

Results 1 to 12 of 12
  1. #1
    Apprentice Josh McDonnell is offline
    MemberRank
    Nov 2014 Join Date
    7Posts

    [Need help]

    Can someone put this script too a .exe file for me and send it too my skype please :Josh-Jacklovesburgerz




    /* Anti-Shotbot Bypasser */
    #include <windows.h>
    #include <thread>
    #include <iostream>


    HHOOK MouseHook;


    LRESULT CALLBACK ReplaceMousehook(int nCode, WPARAM wParam, LPARAM lParam)
    {
    if (
    nCode == HC_ACTION && (wParam == WM_RBUTTONDOWN || wParam == WM_LBUTTONDOWN))
    {
    reinterpret_cast<MSLLHOOKSTRUCT*>(lParam)->flags = 0;
    std::cout << "Injection bypassed!" << std::endl;
    }
    return
    CallNextHookEx(MouseHook,nCode,wParam,lParam);
    }


    void ShotbotBypassExample()
    {
    while(
    true)
    {
    if (
    GetAsyncKeyState(VK_NUMPAD0)&1)
    {
    std::cout << "Sending input now." << std::endl;
    INPUT input[2];
    input[0].type = INPUT_MOUSE;
    input[0].mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
    input[1].type = INPUT_MOUSE;
    input[1].mi.dwFlags = MOUSEEVENTF_LEFTUP;
    SendInput(2, input, sizeof(INPUT));
    }


    Sleep(1);
    }
    }


    int main(int argc, char** argv)
    {
    std::thread keybind(ShotbotBypassExample);
    keybind.joinable();


    HHOOK hook = SetWindowsHookEx( WH_MOUSE_LL, ReplaceMousehook, GetModuleHandle(0), NULL );
    MSG message;
    while (
    GetMessage(&message,NULL,0,0)) {
    TranslateMessage( &message );
    DispatchMessage( &message );
    }
    return
    0;
    }


  2. #2
    Valued Member grandao is offline
    MemberRank
    Feb 2008 Join Date
    RJ - BrasilLocation
    128Posts

    Re: [Need help]

    Sure, do you want we make your homework too?
    If you asked how you could compile it to an executable you would have an answer.

  3. #3
    Apprentice Josh McDonnell is offline
    MemberRank
    Nov 2014 Join Date
    7Posts

    Re: [Need help]

    I dont know how too, Neither do i have the programs too do so. Gunblade done it for me lasttime via python

  4. #4
    Valued Member grandao is offline
    MemberRank
    Feb 2008 Join Date
    RJ - BrasilLocation
    128Posts

    Re: [Need help]

    Quote Originally Posted by Josh McDonnell View Post
    I dont know how too, Neither do i have the programs too do so. Gunblade done it for me lasttime via python
    Why not use this opportunity to learn how to do it?
    1. it's C++ code
    2. you'll need a C++ compiler (the program which transform the code into an exe), you can use g++ google 'g++ for windows' to install g++
    3. add the path you installed g++ to the PATH system variable (control panel/system/environment variables)
    4. reboot
    5. create a file named 'main.cpp' and copy the code you posted to it.
    6. create a file build.bat, right click-> edit and put the following text into it 'g++ main.cpp -o program.exe' save it.
    7. double click build.bat
    8. if you've done it right you should have your exe called 'program.exe'

  5. #5
    Apprentice Josh McDonnell is offline
    MemberRank
    Nov 2014 Join Date
    7Posts

    Re: [Need help]

    Okay thanks alot appriciate it :)

    - - - Updated - - -

    I downloaded a c++ compiler etc.. But it didn't make a Main.cpp or bat file.. So i cant do any of the above you said.. Could you not make my life alot easier and just upload the exe for me? Would appriciate it very much. Thanks, Josh

  6. #6
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: [Need help]

    It wasn't supposed to make a cpp or bat file... create a file yourself called main.cpp, then paste that code inside of it. then after that, create a .bat file, and paste this in it like grandao said:

    6. create a file build.bat, right click-> edit and put the following text into it 'g++ main.cpp -o program.exe' save it. double click build.bat

  7. #7
    Apprentice Josh McDonnell is offline
    MemberRank
    Nov 2014 Join Date
    7Posts

    Re: [Need help]

    But i dont have anything too create a .bat or .cpp file.. And i have admin controls on pc so cant download myself. Hense why i asked if someone could help me out and create the .exe file for me. In the time you guys have wasted telling me you could of made and i could of closed this thread.. -.-

  8. #8
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: [Need help]

    I'm not doing your work for you, so mind the attitude... if you have visual studio you can make a cpp file, and a bat file is made via notepad.... create a text file, and change the extension from .txt to .bat.... if you think someone's going to do the work for you think again, I don't mind helping people, but you're being ridiculously lazy. Download visual studio 2003/2008/2012/2013, whichever you prefer, don't ask how to get visual studio, 5 minutes of google will tell you. If you expect to get help in the future, mind the attitude of your posts, no one wants to help a person that comes across as a douche.

  9. #9
    Apprentice Josh McDonnell is offline
    MemberRank
    Nov 2014 Join Date
    7Posts

    Re: [Need help]

    You're saying im this and that, But if you READ. I did say i cannot download ANYTHING.

  10. #10
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: [Need help]

    Quote Originally Posted by Josh McDonnell View Post
    You're saying im this and that, But if you READ. I did say i cannot download ANYTHING.
    You can't/won't download anything so expect us to do the work for you. Ask your parents to let you download visual studio lol. I'm sure if you try really really hard, harder than ever before (yes i'm picking on you lol), you can find a way to download the stuff.

  11. #11
    Apprentice Josh McDonnell is offline
    MemberRank
    Nov 2014 Join Date
    7Posts

    Re: [Need help]

    Its not my actual pc. Thats why, And i used too download alot of things thats why im restriced now lol

  12. #12
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: [Need help]

    Quote Originally Posted by Josh McDonnell View Post
    Its not my actual pc. Thats why, And i used too download alot of things thats why im restriced now lol
    Well, lesson learned don't download a bunch of stuff when its not your pc lol. I lock down anyone on my pc.



Advertisement