Page 20 of 23 FirstFirst ... 101819202122 ... LastLast
Results 286 to 300 of 344
  1. #286
    IReallyNeedHelp's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    Quote Originally Posted by KibitzAG View Post
    I love PolyLoader it makes it so much better to hack. VAC's Are rare when I use polyloader, I usually only get OW Bans
    What hack do you use?

  2. #287
    feelactive's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I have not polyRT.zip :'(

  3. #288
    macebattle's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    The attached zip file is invalid.

    Please re-upload it

  4. #289
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,282
    My Mood
    Devilish
    Quote Originally Posted by macebattle View Post
    The attached zip file is invalid.

    Please re-upload it
    It's a site bug, wait a few minutes and then attempt to download the file again.

  5. #290
    shackl10's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    When i download the file and open it it says it is invalid, I have kept downloading for about half an hour. keep waiting?

  6. #291
    Slybearxx's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    When I compile the PolyMeme10.0 it works and compiles, but when I look for the PolyMeme10.0.exe I can't find it? Its not in the PolyLoader folder or my Hard Drive? Any Suggestions.

  7. #292
    mastacan12's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Soo where can i get a working poly hack file?

  8. #293
    samet231231's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Yamiez View Post
    PolyLoader 2.3.1

    What is PolyLoader?
    PolyLoader is a program that opens hack files, randomizes the source code and compiles it.
    This process results in an application that is very hard to detect for VAC because the signature changes everytime.

    Changelog
     
    Code:
    2.3
    ---
    Added more safety checks to minimize crashing, most exceptions are now handled and will pop up with a error.
    
    2.1
    ---
    Added drag and drop functionality (drag hackfile to PolyLoader.exe)
    Better error reporting, it will now scan for the correct version of VS2013, the windows SDK and the ERROR: Cannot determine ....
    
    2.0
    ---
    Better junk code generation
    Complete syntax change for hack files
    String encryption
    New UI
    Better performance
    Automatic detection of the compiler path


    For users

    How to use:

    1. Download Microsoft Visual Studio Express 2013 for Windows Desktop
    2. Download the PolyLoader
    3. Download a hack file
    4. Open the PolyLoader as admin
    5. Select the hack file
    6. Press compile

    Errors:
    "Something went wrong when compiling the randomized source!":
    Press the "View compiler output" checkbox and post the data of the console that opens.

    Access denied:
    Run as admin.

    How to use VMProtect/Enigma etc...:
    First you have to generate an exe using the loader for instance "PolyHack_RT.exe".
    Now you can protect "PolyHack_RT.exe".


    For developers
    Everyone can create a hack that supports the PolyLoader platform.
     
    A hack file is just a simple zip with the following files:
    -command.txt
    -inout.txt
    -msg.txt
    and a src directory.

    So how do I make a hack file?
    Step 1, modify your source code.
    The PolyLoader uses a few tags to understand your file:

    [swap_lines][/swap_lines] - Swap the lines between the 2 tags, useful for randomizing a structure.
    Code:
    struct Entity {
        [swap_lines]
        DWORD dwBase;
        int id;
        int hp;
        int team;
        int weapon_id;
        int weapon_ammo;
        [/swap_lines]
    };
    [junk_enable /] - Enables auto junk code addition, the PolyLoader will add junk code after every ;
    You can give it 1 or 2 parameters
    [junk_enable 5 /] - Will add 5 lines of junk code after every ;
    [junk_enable 5 10 /] - Will add 5 to 10 lines of junk code after every;
    [junk_disable /] - Disables auto junk code addition.
    [junk_enable_declares /] - The auto junk code generator will now only make declares (useful for in header files).

    [add_junk /] - Adds a block of junk code at this position, it does NOT take junk_enable_declares into account.

    [swap_blocks][/swap_blocks] - Works like swap_lines but instead it swaps blocks of code.
    [block][/block] - Define a block
    Code:
    [swap_blocks]
    [block]
    if (x == 5) {
        std::cout << "x == 5\n";
    }
    [/block]
    [block]
    if (y == 7) {
        std::cout << "y == 7\n";
    }
    [/block]
    [/swap_blocks]
    [enc_string_enable /] - Scrambles all strings, when you are using this make sure you have Decrypt.h included (the loader will generate a randomized Decrypt.h file).
    [enc_string_disable /] - Disables the auto string scrambler.

    command.txt
    In command.txt you have to fill in the command line compiler options, here you have to link all the libraries etc... this one should work for practically any hack.
    Code:
    /EHsc /Od /MT *.cpp kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /link /FORCE:MULTIPLE /OUT:hack.exe
    inout.txt
    First line you put the filename the compiler generates (see the /OUT: parameter)
    Second line the new name.
    Code:
    hack.exe
    MyHack.exe
    msg.txt
    A message that will pops up when the user loads up the hack.

    If you have any question regarding implementing this system sent me a pm .



    Virusscans
    Jotti
    Virustotal


    Credits
    Merccy2 - Created PolyLoader


    If you still crash please add my skype and post the errors, from what I gathered the crashing should be fixed now.

    Lıfe time ud ??(like a my own cheat)If I make own codes or I ise this program random signature whats the difference ?
    ????

  9. #294
    gustavosibb's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    2
    DOWNLOAD 7-ZIP AND YOU WILL BE ABLE TO OPEN THE FILE!!!!!!!!

  10. #295
    TheLastArc's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    can anyone link me a good hack that works well with this. thanks!

  11. #296
    HnS123's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    My Mood
    Sneaky
    so this make it much safer to launch hacks ?

  12. #297
    Joplin's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    NaziLand
    Posts
    467
    Reputation
    10
    Thanks
    1,753
    Thanks! Nice release

  13. #298
    Avengelau's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    MPGH
    Posts
    91
    Reputation
    44
    Thanks
    18
    My Mood
    Tired
    Hi Yamiez, thanks for the polyloader, however when I try to compile my newest Polymeme hack, it shows this:

    ERROR: Cannot determine the location of the VS Common Tools folder.
    Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x86
    Copyright (C) Microsoft Corporation. All rights reserved.

    Decrypt.cpp
    c:\users\edwinlau\desktop\polyloader\polymeme v10.2_mpgh.net_r\Decrypt.h(4) : fa
    tal error C1034: stdlib.h: no include path set
    ProcMem.cpp
    c:\users\edwinlau\desktop\polyloader\polymeme v10.2_mpgh.net_r\ProcMem.h(6) : fa
    tal error C1034: windows.h: no include path set
    Source.cpp
    c:\users\edwinlau\desktop\polyloader\polymeme v10.2_mpgh.net_r\ProcMem.h(6) : fa
    tal error C1034: windows.h: no include path set
    Generating Code...
    Press any key to continue . . .


    Thanks in advance for reviewing it, is there anything I did wrong?
    you can't even choke in public anymore

  14. #299
    Jordan099's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    can someone tell me how to make a hack file?

  15. #300
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,282
    My Mood
    Devilish
    Quote Originally Posted by Jordan099 View Post
    can someone tell me how to make a hack file?
    Someone is illiterate!

    Quote Originally Posted by Yamiez View Post
    For developers
    Everyone can create a hack that supports the PolyLoader platform.
     
    A hack file is just a simple zip with the following files:
    -command.txt
    -inout.txt
    -msg.txt
    and a src directory.

    So how do I make a hack file?
    Step 1, modify your source code.
    The PolyLoader uses a few tags to understand your file:

    [swap_lines][/swap_lines] - Swap the lines between the 2 tags, useful for randomizing a structure.
    Code:
    struct Entity {
        [swap_lines]
        DWORD dwBase;
        int id;
        int hp;
        int team;
        int weapon_id;
        int weapon_ammo;
        [/swap_lines]
    };
    [junk_enable /] - Enables auto junk code addition, the PolyLoader will add junk code after every ;
    You can give it 1 or 2 parameters
    [junk_enable 5 /] - Will add 5 lines of junk code after every ;
    [junk_enable 5 10 /] - Will add 5 to 10 lines of junk code after every;
    [junk_disable /] - Disables auto junk code addition.
    [junk_enable_declares /] - The auto junk code generator will now only make declares (useful for in header files).

    [add_junk /] - Adds a block of junk code at this position, it does NOT take junk_enable_declares into account.

    [swap_blocks][/swap_blocks] - Works like swap_lines but instead it swaps blocks of code.
    [block][/block] - Define a block
    Code:
    [swap_blocks]
    [block]
    if (x == 5) {
        std::cout << "x == 5\n";
    }
    [/block]
    [block]
    if (y == 7) {
        std::cout << "y == 7\n";
    }
    [/block]
    [/swap_blocks]
    [enc_string_enable /] - Scrambles all strings, when you are using this make sure you have Decrypt.h included (the loader will generate a randomized Decrypt.h file).
    [enc_string_disable /] - Disables the auto string scrambler.

    command.txt
    In command.txt you have to fill in the command line compiler options, here you have to link all the libraries etc... this one should work for practically any hack.
    Code:
    /EHsc /Od /MT *.cpp kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /link /FORCE:MULTIPLE /OUT:hack.exe
    inout.txt
    First line you put the filename the compiler generates (see the /OUT: parameter)
    Second line the new name.
    Code:
    hack.exe
    MyHack.exe
    msg.txt
    A message that will pops up when the user loads up the hack.

    If you have any question regarding implementing this system sent me a pm .

    Quote Originally Posted by Avengelau View Post
    Thanks in advance for reviewing it, is there anything I did wrong?
    You didn't install the C++ compiler for Visual studio.

Page 20 of 23 FirstFirst ... 101819202122 ... LastLast

Similar Threads

  1. Polyloader Problems
    By RewindD in forum Counter-Strike 2 Discussions
    Replies: 14
    Last Post: 11-30-2019, 09:08 AM
  2. [Outdated] Merccy's PolyLoader 2.0
    By Merccy2 in forum Counter-Strike 2 Hacks
    Replies: 1316
    Last Post: 06-29-2015, 02:40 PM
  3. [Info] Developers guide to Merccy's PolyLoader
    By c0deine in forum Counter-Strike 2 Coding & Resources
    Replies: 3
    Last Post: 03-21-2015, 10:47 AM
  4. Replies: 8
    Last Post: 03-19-2015, 09:18 AM
  5. PolyLoader 2.0 not compiling
    By lozid123 in forum Counter-Strike 2 Discussions
    Replies: 3
    Last Post: 03-14-2015, 02:02 PM