Results 1 to 4 of 4
  1. #1
    xaizel060110's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    13
    My Mood
    Lonely

    Post Guys pls help to Code and to make this a DLL.. Thank you MPGH coders and ADMINS

    This is the code guys.. pls help me if ok.... thank you all in advance

    ‎#include <windows.h>

    #define Base_ptr 0xA77970

    bool g_bNoRecoilSpr = false;

    DWORD GetPlayerBase()
    {
    DWORD Base = *(DWORD*)Base_ptr;
    if(!Base)
    return NULL;

    Base = *(DWORD*)(Base+0x30);
    if(!Base)
    return NULL;

    Base = *(DWORD*)(Base+0x1c);
    if(!Base)
    return NULL;

    return Base;
    }

    void NoRecoilSpr()
    {
    DWORD WeaponBase = NULL;

    if(g_bNoRecoilSpr == true)
    {
    WeaponBase = GetPlayerBase();
    if(WeaponBase)
    {
    WeaponBase = *(DWORD*)(WeaponBase+0x54);
    if(WeaponBase)
    {
    *(BYTE*)(WeaponBase + 0x161D4) = 0;
    *(BYTE*)(WeaponBase + 0x161D8) = 0;
    *(BYTE*)(WeaponBase + 0x16204) = 0;
    }
    }
    }
    }

    DWORD Init()
    {

    while(1)
    {
    if(GetAsyncKeyState(VK_F2)&1)g_bNoRecoilSpr = !g_bNoRecoilSpr;

    NoRecoilSpr();

    Sleep(100);
    }

    return 0;
    }

    BOOL __stdcall DllMain(HMODULE module, DWORD reason, LPVOID reserved)
    {
    if(reason == DLL_PROCESS_ATTACH)
    {
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)Init, 0,0,0);
    }

    return TRUE;
    }



    Thanks guys... this is No Recoil on SF DFI... pls make this a DLL and post it here... thank you thank you

  2. #2
    emiedumalasa's Avatar
    Join Date
    May 2012
    Gender
    female
    Location
    Hackershero
    Posts
    683
    Reputation
    10
    Thanks
    794
    My Mood
    Angelic
    lol, you had posted in a wrong section... did you read and understand the rules and regulation of this site?,

  3. #3
    Ryuzaki™'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    At my headquarter, catching KIRA
    Posts
    1,671
    Reputation
    41
    Thanks
    6,252
    My Mood
    Lurking
    Give me the updated addy and I will make it a dll



  4. #4
    xaizel060110's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    13
    My Mood
    Lonely
    Quote Originally Posted by Ryuzaki™ View Post
    Give me the updated addy and I will make it a dll
    thats the updated addy... pls make it DLL...

    Im sorry if i post in wrong section... pls forgive me

Similar Threads

  1. [Solved] Guys pls help!!!
    By darkmania98 in forum Vindictus Help
    Replies: 3
    Last Post: 10-15-2011, 10:25 PM
  2. [Solved] Guys pls help me out
    By shitman514 in forum CrossFire Help
    Replies: 15
    Last Post: 08-25-2011, 04:55 PM
  3. [Solved] Hey guys pls help me i used speed hack and...
    By acengiz6 in forum CrossFire Help
    Replies: 22
    Last Post: 06-07-2011, 12:12 PM
  4. [Help] Guys pls help whit Visual C++ 2008
    By dominik111 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 06-04-2011, 05:58 AM
  5. hi guys pls help me
    By wertoskiller in forum C++/C Programming
    Replies: 1
    Last Post: 07-27-2009, 08:43 PM