Results 1 to 3 of 3
  1. #1
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky

    [OllyDBG]No flash/partial stun

    WARNING: THIS IS FROM AN OLDER VERSION OF THE GAME! CHECK THE BOTTOM FOR UPDATES ADDIES!!!

    -===-

    First thing you'll have to do is load up iw4mp.exe in ollydbg.
    Next, find -> all referenced text strings.

    Step 1:
    Search for -> drawDamageFlash


    Step 2:
    Follow it by pressing enter or double clicking the line


    Step 3:
    As can be seen in the picture
    MOV DWORD PTR DS:[7F0C60], EAX
    was what we were looking for.
    So, lets go to that addy


    Step 4:
    Now that we're at the location where this dvar is stored, we'll have to find references to it.


    Step 5:
    You'll end up with 3 refs.
    First one is where we came from(MOV DWORD PTR DS:[7F0C60], EAX)
    The second is where we'll want to go
    The third is the location of the cvar(from where we found the referece).
    So, right click the 2nd entry and click follow in disassembler.


    Step 6:
    In the function where we now arrived, the value of drawDamageFlash is compared to 0(off), if it is it makes a jump.
    Now there's two things we could do.
    1 is we change the JE(jump if equal) to JMP(always jump) to remove the flashbang effect
    or 2, we pray that this function handles all flash related stuff(so stun grenades too) and return 0 at the top.
    I chose for #2, so writeprocessmemory the following to the start of the function to disable flash and stun effects:
    B8 00 00 00 00 C3 90
    B8 00 00 00 00 is MOV EAX, 0
    EAX is the register used for return values.
    C3 = return
    90 is a nop(no operation), since the original command was 7 bytes long.


    Hope this helped

    -===-

    Updated addies:
    1.1.195:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3, 0x90' to 0x00457310

    1.3.37:
    write '0xB8, 0x00, 0x00, 0x00, 0x00, 0xC3, 0x90' to 0x00457310

    Signature:
    0F 95 C0 84 C0 75 73 80 3D
    then go to the start of that function.
    Ah we-a blaze the fyah, make it bun dem!

  2. The Following 2 Users Say Thank You to Hell_Demon For This Useful Post:

    JaloNik (06-15-2010),Zyixc (06-13-2010)

  3. #2
    Zyixc's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Geneva
    Posts
    359
    Reputation
    13
    Thanks
    225
    My Mood
    Yeehaw
    Thnx was looking for a good explaination how to do this
    i saw this somewhere in cheat engine but couldnt figure it out


    [IMG]https://www.mpgh.net/forum/members/560509-zyixc-albums-d/picture2910-******.png[/IMG]


    The stars that once lit my way have dimmed, the sky turned gray.
    The path, once so clear, faded away.

  4. #3
    Th3Psycho's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    7
    My Mood
    Psychedelic
    Cool! I wonder if theres a way to do this using the mod loader and .gsc

Similar Threads

  1. [ODBG] Anti flash/stun
    By why06 in forum C++/C Programming
    Replies: 6
    Last Post: 02-25-2010, 11:34 PM
  2. Flash Mx
    By Harvo in forum Spammers Corner
    Replies: 9
    Last Post: 08-24-2008, 05:19 PM
  3. Godmode Hack with Ollydbg Tutorial
    By emisand in forum Gunz Hacks
    Replies: 46
    Last Post: 02-20-2006, 06:12 PM
  4. no stun
    By beko in forum Gunz General
    Replies: 3
    Last Post: 02-19-2006, 12:53 PM
  5. flash gameZ
    By WacKer in forum Hack Requests
    Replies: 0
    Last Post: 01-15-2006, 02:09 PM