Sniper Zoom

Results 1 to 1 of 1
  1. #1
    Apprentice jarc1995 is offline
    MemberRank
    Sep 2011 Join Date
    16Posts

    Sniper Zoom

    Hello guys i have a problem whit my sniper zoom, i want it too zoom less, but i don't know how to make it there is my code:

    unsigned long g_dwLastSniperUpdate = 0;

    void ZMyCharacter::OnGadget_Snifer()
    {
    unsigned long dwTime = timeGetTime();

    if (g_dwLastSniperUpdate == 0 || g_dwLastSniperUpdate <= (dwTime - 200))
    {
    ZMyCharaterStatusBitPacking & zStatus = m_statusFlags.Ref();

    zStatus.m_bSniferMode = !zStatus.m_bSniferMode;

    ZCombatInterface* ci=ZGetCombatInterface();

    if (ci)
    {
    if (zStatus.m_bSniferMode)
    {
    ci->OnGadget(MWT_SNIFER);

    }
    else
    {
    ci->OnGadgetOff();

    }
    }

    g_dwLastSniperUpdate = dwTime;
    }
    }
    Btw i'm using a image as scope for the sniper.

    Hope you guys can help me




Advertisement