Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    Armored-'s Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    #Process.h
    Posts
    18
    Reputation
    10
    Thanks
    13
    My Mood
    Cool

    [BS SEA] Anti vote kick and weapon index error bypass updated 03/16/2016

    coming soon video tutorial


    //anti vote kick
    *(BYTE*) 0x518BA8 = 0x85;
    *(BYTE*) 0x518BD2 = 0x75;

    //weapon index error bypass
    *(WORD*) 0x54124C = 0x7400;
    #FreeForAll

    Obs: GabrielZ/Book/Minerva method (AntiVoteKick)

  2. The Following 7 Users Say Thank You to Armored- For This Useful Post:

    Dagethedevil (03-16-2016),failnoobgamer (03-16-2016),KKrysis˛ (03-16-2016),mukmin017 (03-16-2016),nikazizi97 (03-16-2016),Sabrina_Ferraz (03-16-2016),ScorpionVenom789 (03-16-2016)

  3. #2
    Dagethedevil's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    esse monte de codigo e hack é facil agora pra injetar é q ta foda năo consigo de jeito nenhum ..

  4. #3
    BabyBabyoh2's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    7
    #include <Windows.h>

    int lag = 300;

    void MemSet(void *adr, void *ptr, int size)
    {
    DWORD OldProtection;
    VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,OldProtection, &OldProtection);
    }

    bool Kick;

    void Kick2 ()
    {
    if (Kick)
    *(BYTE*) 0x518BA8 = 0x85;
    *(BYTE*) 0x518BD2 = 0x75;
    Sleep(100);
    *(BYTE*) 0x518BA8 = 0x84;
    *(BYTE*) 0x518BD2 = 0x74;
    Sleep(300);
    }

    void Kick3 ()
    {
    while (1)
    {
    if (GetAsyncKeyState ( VK_LEFT ) & 1)
    Kick =! Kick;
    Kick2 ();
    Sleep (lag);
    }
    }

    BOOL WINAPI DllMain(HMODULE hModule, DWORD _CallReason, LPVOID lpvReserved)
    {
    switch(_CallReason)
    {
    case DLL_PROCESS_ATTACH:
    {
    CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)Kick2, NULL, 0, 0 );
    CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)Kick3, NULL, 0, 0 );
    }
    }
    return 1;
    }
    Créditos: [Armored ] - Codigos Ant Kick
    [ eu ] - Source
    [ Minerva/ book ] - método
    Last edited by BabyBabyoh2; 03-16-2016 at 12:46 PM.

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

    Sabrina_Ferraz (03-20-2016)

  6. #4
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by BabyBabyoh2 View Post
    Créditos: [Armored ] - Codigos Ant Kick
    [ eu ] - Source
    [ Minerva/ book ] - método
    interesting source code
    ᚛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. #5
    Obliteration's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    707
    Reputation
    154
    Thanks
    646
    Quote Originally Posted by BabyBabyoh2 View Post
    Creditos: Armored
    amigo
    o que é " Dc ();"
    é um erro para mim

    //What is the Dc(); ?
    it is an error for me
    Last edited by Obliteration; 03-16-2016 at 11:47 AM.

  8. #6
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by Obliteration View Post
    amigo
    o que é " Dc ();"
    é um erro para mim

    //What is the Dc(); ?
    it is an error for me
    you need to learn. not all the time you should do the copy paste.
    ᚛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 !



  9. #7
    Obliteration's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    707
    Reputation
    154
    Thanks
    646
    Quote Originally Posted by COD3RIN View Post


    you need to learn. not all the time you should do the copy paste.
    the "Dc ();" is random, it's not a variable nor a class nor a function nor was it defined, so I'm just wondering why it was added to the code when it serves no purpose.

  10. #8
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by Obliteration View Post
    the "Dc ();" is random, it's not a variable nor a class nor a function nor was it defined, so I'm just wondering why it was added to the code when it serves no purpose.
    the main reason he put that code is to avoid CP.
    ᚛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 !



  11. #9
    BabyBabyoh2's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    7
    Quote Originally Posted by Obliteration View Post
    amigo
    o que é " Dc ();"
    é um erro para mim

    //What is the Dc(); ?
    it is an error for me

    Já arrumei ok? <3

  12. #10
    luqman99's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by BabyBabyoh2 View Post
    Créditos: [Armored ] - Codigos Ant Kick
    [ eu ] - Source
    [ Minerva/ book ] - método
    HMM EXPLAIN TO ME PLSS .. WHAT THE HOTKEY ETC

  13. #11
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by luqman99 View Post
    HMM EXPLAIN TO ME PLSS .. WHAT THE HOTKEY ETC
    hotkey left button
    ᚛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 !



  14. #12
    azrultolol's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Location
    Home Sweet Home
    Posts
    29
    Reputation
    10
    Thanks
    0
    Left ? Where .-.

  15. #13
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by azrultolol View Post
    Left ? Where .-.
    left button mouse
    ᚛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 !



  16. #14
    nikazizi97's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    677
    Reputation
    10
    Thanks
    590
    My Mood
    Angelic
    Quote Originally Posted by Armored- View Post
    coming soon video tutorial




    #FreeForAll

    Obs: GabrielZ/Book/Minerva method (AntiVoteKick)
    who know how to use , i did not have any idea how to use this , this first time i heard this method on MPGH
    @Armored- teach please

    ON Skype ? Maybe ? Add Me Anyway ...
    Last edited by nikazizi97; 03-16-2016 at 06:11 PM.
    [Outdated] Weapon Hack All Server (BlackShot SEA) - 20/03
     
    [Outdated] Weapon Hack All Server (BlackShot SEA)
    [Preview] Simple Hack v0.0.1 + Weapon Hack + Aimbot [BlackShot SEA]

    Video Preview :


    Just Simple Hack v0.0.1

    Features :
    8 xDamage
    44.8 xSpeed
    xRapidFire
    Weapon2Melee



    Code:
    ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

  17. #15
    KKrysis˛'s Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Dildo™
    Posts
    1,166
    Reputation
    10
    Thanks
    2,830
    My Mood
    Inspired
    Quote Originally Posted by COD3RIN View Post

    left button mouse
    left arrow la

Page 1 of 2 12 LastLast

Similar Threads

  1. Method Weapon Index Error All Server BlackShot SEA and Global BlackShot
    By C0DEBREAKER in forum Blackshot Coding & Hacking Tutorials
    Replies: 35
    Last Post: 04-24-2016, 03:02 PM
  2. [Solved] Weapon Index error bypassed
    By yogeshkiller12 in forum Blackshot Help
    Replies: 3
    Last Post: 12-27-2015, 03:38 PM
  3. [Solved] How to Prevent Weapon Index error for weapon hack ?
    By ivancapitle123 in forum Blackshot Help
    Replies: 6
    Last Post: 03-28-2015, 05:49 PM
  4. [Solved] Weapon index error problem.
    By gnlazarus in forum Blackshot Help
    Replies: 1
    Last Post: 01-28-2015, 12:03 PM
  5. [Solved] How to bypass weapon index error
    By SPH0 in forum Blackshot Help
    Replies: 1
    Last Post: 11-28-2014, 08:33 PM