Results 1 to 8 of 8
  1. #1
    mik334's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    25
    My Mood
    Bashful

    How to make your hack VAC undetected

    So i made my hack(externally using invisibleLib) only Bunny/Trigger only. what am i asking is there some source or some outdated opensource to bypass SMAC? if anyone knows can you link me there. i tried googling but i think the sources is within other forums which i dont know.

  2. #2
    Quod bonum, faustum, fēlīx fortunātumque sit.
    MPGH Member
    pean153's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    FIT CTU
    Posts
    982
    Reputation
    174
    Thanks
    15,901
    My Mood
    Relaxed
    Quote Originally Posted by mik334 View Post
    So i made my hack(externally using invisibleLib) only Bunny/Trigger only. what am i asking is there some source or some outdated opensource to bypass SMAC? if anyone knows can you link me there. i tried googling but i think the sources is within other forums which i dont know.
    perfect bhop will always be detected, its not worth it anyways, you can easily get trigger ud by adding random delays to it (https://www.cplusplus.com/reference/cstdlib/rand/)

  3. #3
    Valkymester's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    If you understand CPP.

    Code:
    if ((buttons & IN_JUMP) && !(iPrevButtons[client] & IN_JUMP)) // This executes if a client sends +jump 
    { 
        if (GetEntityFlags(client) & FL_ONGROUND) 
        { 
            new Float:fGameTime = GetGameTime(); 
    
            if (fCheckTime[client] > 0.0 && fGameTime > fCheckTime[client]) 
            { 
                AutoTrigger_Detected(client, METHOD_BUNNYHOP); 
            } 
            else 
            { 
                fCheckTime[client] = fGameTime + MIN_JUMP_TIME; 
            } 
        } 
        else // This executes if a client sends +jump when they are NOT on ground 
        { 
            fCheckTime[client] = 0.0; // In the above statement, if fCheckTime equals 0.0 or lower AutoTrigger_Detected won't be called 
        } 
    }

  4. #4
    420skid420's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Sweden
    Posts
    203
    Reputation
    10
    Thanks
    18
    Don't look for sources, you are young you don't want to enter skid life.
    I believe in you.

  5. #5
    mik334's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    25
    My Mood
    Bashful
    alright mate. i'll add rand() on my bhop and trigger would that do the trick?

  6. #6
    viking911's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    ViKiNGHOOK
    Posts
    214
    Reputation
    10
    Thanks
    2,219
    My Mood
    Devilish
    Quote Originally Posted by mik334 View Post
    So i made my hack(externally using invisibleLib) only Bunny/Trigger only. what am i asking is there some source or some outdated opensource to bypass SMAC? if anyone knows can you link me there. i tried googling but i think the sources is within other forums which i dont know.
    You can bypass smac with everything except aimbot with 180-360* and spinbot and maybe auto fire
    FAKEEDGEBOY$ - B4RB0$$4

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

    mik334 (10-20-2015)

  8. #7
    pcdriza's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    90
    Quote Originally Posted by mik334 View Post
    alright mate. i'll add rand() on my bhop and trigger would that do the trick?
    no, don't use rand() for bhop
    that won't help and will break your bhop

    use rand() for your triggerbot

    with bhop do something like this:
    Code:
    int iBunnyHopTicks = 0;
    
    void BunnyHop()
    {
    if (iBunnyHopTicks >= 3)
    {
    iBunnyHopTicks = 0;
    }
    
    if (*regular shit* && (iBunnyHopTicks == 0 || iBunnyHopTicks == 2))
    {
    *jump shit*
    }
    else
    {
    *stop jump shit*
    }
    
    iBunnyHopTicks++;
    }
    aka set jump key, remove jump key, then set jump key again in midair to bypass it

  9. #8
    mik334's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    25
    My Mood
    Bashful
    so i've rewritten the code now, and im thinking. is there any flags i should watch out when trying out my home made trigger&bhop .exe?

Similar Threads

  1. How to make DETECTED HACK Become undetected.
    By h6amzah6qudah6123 in forum Piercing Blow Tutorials
    Replies: 19
    Last Post: 04-26-2019, 02:26 PM
  2. [Source Code] Autoit - How To make Your Hack For AVA Or Any Another Game
    By Ahmed- in forum Alliance of Valiant Arms (AVA) Coding / Source Code
    Replies: 17
    Last Post: 10-31-2012, 02:20 AM
  3. [Source Code] Autoit - How To make Your Hack For Crossfire Or Any Another Game
    By Ahmed- in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 10-30-2012, 09:03 AM
  4. [How to] make your hack undetected
    By lauwy in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 13
    Last Post: 08-21-2010, 03:23 AM
  5. [TUT] How to make your Detected UCE Undetected!
    By apezwijn in forum WolfTeam Hacks
    Replies: 20
    Last Post: 09-13-2008, 08:05 AM

Tags for this Thread