Results 1 to 2 of 2
  1. #1
    cornholeo's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Location
    Behind You
    Posts
    54
    Reputation
    10
    Thanks
    119
    My Mood
    Yeehaw

    Aim Assist (help me with this/ open to use)

    Found this code that is a "new" aim assist/ lazy aim, it drops the sensitivity whenever an enemy is aimed at (much like games on console)
    Code:
    const DWORD LocalPlayer = 0xa74c9c
    const DWORD EntityList = 0x4a16bd4;
    const DWORD m_iCrossHairID = 0x2410;
    const DWORD SensivityAddress = 0xA7A434;
    const DWORD m_iTeamNum = 0xF0;
    const DWORD EntitySize = 0x10;
    const DWORD m_fFlags = 0x100;
    
    float GetSens()
    {
        DWORD PlayerBase = GetLocal();
        if (PlayerBase)
        {
            float result;
            memmove(&result, (float*)(DW_Client + SensivityAddress), sizeof(float));
            return result;
        }
    }
    
    void SetSens(float x)
    {
        DWORD PlayerBase = GetLocal();
        if (PlayerBase)
        {
            memmove((float*)(DW_Client + SensivityAddress), &x, sizeof(float));
        }
    }
    
    void SensDemo()
    {
        float OrigSens = NULL;
        while (OrigSens == NULL)
            OrigSens = GetSens();
    
        while (true)
        {
            int InCross = GetInCross();
            if (InCross < 64 && InCross > 0 && GetTeamNum(InCross - 1) != GetTeamNum())
                SetSens((OrigSens*0.5));    
    
            if (InCross == NULL && GetSens() != OrigSens)
                SetSens(OrigSens);
    
            Sleep(1);
        }
    }
    I know this is to be compiled in something like Visual Studio but not entirely sure what to do with it.
    From experience the const DWORD looks like it is VB.net style of coding but I could be completely wrong. Would anyone mind helping me with this or releasing something with this?

  2. #2
    PashaThePotato's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    81
    Reputation
    10
    Thanks
    258
    My Mood
    Amazed
    It is VS. That's all I can help with. ._.

Similar Threads

  1. Replies: 2
    Last Post: 07-03-2013, 06:10 PM
  2. [Help Request] HELP ME WITH THIS ERROR!
    By powerluigi1 in forum Combat Arms Help
    Replies: 24
    Last Post: 11-09-2012, 01:06 PM
  3. [Help Request] Help me with this problem, i have
    By powerluigi1 in forum Combat Arms Help
    Replies: 5
    Last Post: 09-16-2012, 01:22 PM
  4. [Help Request] Can any help me with this Cheat engine code?
    By vinvin148 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 0
    Last Post: 07-17-2012, 12:48 PM
  5. [Help Request] Can someone help me with this code
    By L33tHaxorCod3r in forum Minecraft Help
    Replies: 3
    Last Post: 07-16-2012, 11:48 AM