Thread: IF Helps you

Results 1 to 7 of 7
  1. #1
    blackyoo's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    dsgsdter sgds
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed

    Question IF Helps you

    I have found this code.It is a no recoil universal I don t know if its good


    -----------------------------------------------------------------------------
    /*No Recoil (Universal)

    #include <amxmodx>
    #include <fakemeta>

    #if !defined IVecFVec
    #define IVecFVec fm_IVecFVec
    #endif

    // Engine's button define :O
    #define IN_ATTACK (1<<0)

    new szPlugin[] = "AMXx No Recoil (Universal)",
    szVersion[] = "0.1.0",
    szAuthor[] = "Charr";

    new Float:VecSet[33][3],
    gAttack[33];

    new gRecoilFlag = ADMIN_IMMUNITY,
    gNoRecoil;

    public plugin_init()
    {
    register_plugin(szPlugin,szVersion,szAuthor);

    register_concmd("amx_norecoil","admin_norecoil",AD MIN_IMMUNITY,": < 0 (DISABLED) | 1 (ENABLED) | 2 (ADMIN ONLY) >");
    register_concmd("amx_norecoil_level","admin_noreco il_level",ADMIN_IMMUNITY,": < FLAG >");

    register_forward(FM_PlayerPreThink,"FakeMeta_PreTh ink");
    register_forward(FM_TraceLine,"FakeMeta_PostTraceL ine",1);
    }

    // Command to enable/disable no recoil
    public admin_norecoil(id,level)
    {
    if(get_user_flags(id) & level)
    {
    new szArg[32];
    read_argv(1,szArg,31);

    new Arg = str_to_num(szArg);

    if( 0 <= Arg <= 2)
    {
    gNoRecoil = Arg;
    }

    else
    {
    console_print(id,"amx_norecoil: < 0 (DISABLED) | 1 (ENABLED) | 2 (ADMIN ONLY) >");
    }
    }

    else
    {
    console_print(id,"Unknown command: amx_norecoil");
    }

    return PLUGIN_HANDLED;
    }

    // Command for changing the level for admin no recoil
    public admin_norecoil_level(id,level)
    {
    if(get_user_flags(id) & level)
    {
    new szArg[32];
    read_argv(1,szArg,31);

    gRecoilFlag = read_flags(szArg);
    }

    else
    {
    console_print(id,"Unknown command: amx_norecoil_level");
    }

    return PLUGIN_HANDLED;
    }

    // Calculating the player's view based on when they hit the attack button
    public FakeMeta_PreThink(id)
    {
    if(gNoRecoil)
    {
    new buttons = pev(id,pev_button);

    if(!gAttack[id] && buttons & IN_ATTACK)
    {
    gAttack[id] = 1;

    set_pev(id,pev_punchangle,{0.0 , 0.0 , 0.0});

    new Origin[3];

    get_user_origin(id,Origin,3);
    IVecFVec(Origin,VecSet[id]);
    }

    if(gAttack[id] && buttons & ~IN_ATTACK)
    {
    gAttack[id] = 0;
    }
    }
    }

    // Setting the player's view
    public FakeMeta_PostTraceLine(Float:Vec1[3],Float:Vec2[3],noMonsters,id)
    {
    switch(gNoRecoil)
    {
    case 1: set_tr(TR_vecEndPos,VecSet[id]);
    case 2: if(get_user_flags(id) & gRecoilFlag) { set_tr(TR_vecEndPos,VecSet[id]); }
    }
    }

    // Clears the Global vars so that other players that join do not experiance problems
    public client_connect(id)
    {
    for(new i = 0; i < 3; i++)
    {
    VecSet[id][i] = 0.0;
    }

    gAttack[id] = 0;
    }

    stock fm_IVecFVec(const IVec[3], Float:FVec[3])
    {
    for(new Count;Count < 3;Count++)
    FVec[Count] = float(IVec[Count])

    return 1
    }



    --------------------------------------------------------------------------

  2. #2
    MiNT's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    551
    Reputation
    266
    Thanks
    2,559
    My Mood
    Psychedelic
    1- this code is fake lol wdf are those includes ..
    2- thats now how u do no recoil :P

  3. #3
    [H4L]Hacker4Life[H4L]'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    690
    Reputation
    10
    Thanks
    324
    My Mood
    Dead
    Quote Originally Posted by mahetamim View Post
    1- this code is fake lol wdf are those includes ..
    2- thats now how u do no recoil :P
    you need includes to start a dll.

    On-topic:

    Where or who did you leech this from ?
    MPGH

    Plain and simple.

  4. #4
    MiNT's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    551
    Reputation
    266
    Thanks
    2,559
    My Mood
    Psychedelic
    Quote Originally Posted by [H4L]Hacker4Life[H4L] View Post
    you need includes to start a dll.

    On-topic:

    Where or who did you leech this from ?

    lol im not a nub bro,, im just saying that thost include files are not from the standerd librarys and if som1 make his own header files for this hack that would be in " " not < > so this is fake

  5. #5
    UltraPGNoob's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    671
    Reputation
    15
    Thanks
    611
    My Mood
    Fine
    That's for Counter-Strike man. It's not for CrossFire.

  6. #6
    Swiftdude's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Illinois.
    Posts
    12,572
    Reputation
    1130
    Thanks
    2,995
    My Mood
    Cynical
    oh boy...thats nothing really...just a bunch of codes for a really old no recoil and a crappy anti leech /
    Still love you Giggletron

  7. #7
    mrkiller2010's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    In CrossFire
    Posts
    724
    Reputation
    12
    Thanks
    311
    My Mood
    Yeehaw
    Leeched from overdrivjet....req/close

Similar Threads

  1. This should help you NOT get D/C anymore.
    By Tinnytim in forum Combat Arms Hacks & Cheats
    Replies: 18
    Last Post: 12-23-2008, 07:57 PM
  2. This should help you NOT get D/C anymore.
    By Tinnytim in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 12-23-2008, 07:46 PM
  3. if U have Problem [I will help you]..
    By Andyklk2009 in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 08-22-2008, 06:58 PM
  4. [Help]You're probably goina laugh.
    By SadClown20 in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 08-11-2008, 10:29 PM
  5. Willing to help you glitch
    By BlownUpBitch in forum Soldier Front General
    Replies: 3
    Last Post: 10-10-2007, 10:40 AM