Sword Guard Disabled

Results 1 to 21 of 21
  1. #1
    Member iHateFackers is offline
    MemberRank
    Aug 2010 Join Date
    72Posts

    Sword Guard Disabled

    Credits to DelPa

    Code:
    00480339     EB 07          JMP SHORT 00480342




  2. #2
    Ā  Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Sword Guard Disabled

    Haha, that's a good twist in game play.
    I wonder why DelPa didn't post it himself though.

  3. #3
    Member iHateFackers is offline
    MemberRank
    Aug 2010 Join Date
    72Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by phoenix_147 View Post
    Haha, that's a good twist in game play.
    I wonder why DelPa didn't post it himself though.
    He hid them on Euro so I bought them over.

  4. #4
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: Sword Guard Disabled

    Just to let you guys know this is for 2007

  5. #5
    Mocro.net Mocro is offline
    MemberRank
    Feb 2008 Join Date
    Amsterdam.Location
    891Posts

    Re: Sword Guard Disabled

    Hes on fire 0_O ( in releases that is )

  6. #6
    @ your moms bed thajj is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    647Posts

    Re: Sword Guard Disabled

    this diables the block on every single game you join/?

    explain what it really does...

  7. #7
    Aristrum Mark is offline
    MemberRank
    Aug 2007 Join Date
    United KingdomLocation
    474Posts

    Re: Sword Guard Disabled

    It stops the animation you get when you try to hit someones guard. The top pic is a before, the bottom is an after.

  8. #8
    I am THE DON Joe9099 is offline
    MemberRank
    Jan 2007 Join Date
    England, UkLocation
    3,655Posts

    Re: Sword Guard Disabled

    Hmm pretty cool idea, wud be good to just have as a room tag, wouldn't be good to have it default, but thats my opinion, people are use to that block thing lawl

  9. #9
    @ your moms bed thajj is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    647Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Joe9099 View Post
    Hmm pretty cool idea, wud be good to just have as a room tag, wouldn't be good to have it default, but thats my opinion, people are use to that block thing lawl
    Exactly what i had in mind, any way to do this easyily?

  10. #10
    Just Me iceman4154 is offline
    MemberRank
    Oct 2007 Join Date
    Columbus, OhioLocation
    217Posts

    Re: Sword Guard Disabled

    Dll injected into Gunz.exe to check the names of rooms entered is contains whatever then put that edit into effect, really it's quite easy. If you know C or ASM, that is.

  11. #11
    Mocro.net Mocro is offline
    MemberRank
    Feb 2008 Join Date
    Amsterdam.Location
    891Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Cosmify View Post
    For those who want it as a room command:
    Code:
    DWORD ulOldProtect;
        VirtualProtect((void *)0x00480339, 4, PAGE_EXECUTE_READWRITE, &ulOldProtect);
        memcpy((void *)0x00480339, "\xEB\x07", 4);
        VirtualProtect((void *)0x00480339, 4, ulOldProtect, &ulOldProtect);
    I won't post a fully-working room command as I don't want to spoonfeed noob servers.
    Notice:This code is written only from my memory,it may or may not work.
    Code:
    BLoCheck = false,
    Code:
    #define BLOCK                        0x00480339
    Code:
        if(name.find("[BLO]") != string::npos)    {
            BloockOn();
            BLoCheck = true;
        }
        if(name.find("[BLO]") == string::npos)    {
            BloockOff();
            BLoCheck = false;
        }
    Code:
    void BloockOn()    {
        if(BLoCheck != true)    {
                    VirtualProtect((void *)BLOCK, 2, PAGE_EXECUTE_READWRITE, &ulOldProtect);
    
                    FlushInstructionCache(GetCurrentProcess(), (void *)BLOCK, 2);
    
                    memcpy((void *)BLOCK, "\xEB\x07", 2);
    
                    VirtualProtect((void *)BLOCK, 2, ulOldProtect, &ulOldProtect);
                }
    }
    void BloockOff()    {
        if(BLoCheck != false)    {
                    VirtualProtect((void *)BLOCK, 2, PAGE_EXECUTE_READWRITE, &ulOldProtect);
    
                    FlushInstructionCache(GetCurrentProcess(), (void *)BLOCK, 2);
    
                    memcpy((void *)BLOCK, "\x74\x07", 2);
    
                    VirtualProtect((void *)BLOCK, 2, ulOldProtect, &ulOldProtect);
                }
    }

  12. #12
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Mocro View Post
    Code:
    BLoCheck = false,
    Code:
    #define BLOCK                        0x00480339
    Code:
        if(name.find("[BLO]") != string::npos)    {
            BloockOn();
            BLoCheck = true;
        }
        if(name.find("[BLO]") == string::npos)    {
            BloockOff();
            BLoCheck = false;
        }
    Code:
    void BloockOn()    {
        if(BLoCheck != true)    {
                    VirtualProtect((void *)BLOCK, 2, PAGE_EXECUTE_READWRITE, &ulOldProtect);
    
                    FlushInstructionCache(GetCurrentProcess(), (void *)BLOCK, 2);
    
                    memcpy((void *)BLOCK, "\xEB\x07", 2);
    
                    VirtualProtect((void *)BLOCK, 2, ulOldProtect, &ulOldProtect);
                }
    }
    void BloockOff()    {
        if(BLoCheck != false)    {
                    VirtualProtect((void *)BLOCK, 2, PAGE_EXECUTE_READWRITE, &ulOldProtect);
    
                    FlushInstructionCache(GetCurrentProcess(), (void *)BLOCK, 2);
    
                    memcpy((void *)BLOCK, "\x74\x07", 2);
    
                    VirtualProtect((void *)BLOCK, 2, ulOldProtect, &ulOldProtect);
                }
    }
    You've gotten better , nice. Maybe I'll get off my lazy self and learn some C++

  13. #13
    Account Upgraded | Title Enabled! EnhanceGFX is offline
    MemberRank
    Aug 2010 Join Date
    The NetherlandsLocation
    440Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Pedobear View Post
    You've gotten better , nice. Maybe I'll get off my lazy self and learn some C++
    Yes you should, instead of leeching on other accounts with names like "IHateFacker.s"

  14. #14
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by EnhanceGFX View Post
    Yes you should, instead of leeching on other accounts with names like "IHateFacker.s"
    Not my account , It belongs to my old developer.

  15. #15
    Mocro.net Mocro is offline
    MemberRank
    Feb 2008 Join Date
    Amsterdam.Location
    891Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Pedobear View Post
    You've gotten better , nice. Maybe I'll get off my lazy self and learn some C++
    Lol thank you xD i learned the channel commands to ( the problem i had on the other topic )

  16. #16
    Account Upgraded | Title Enabled! EnhanceGFX is offline
    MemberRank
    Aug 2010 Join Date
    The NetherlandsLocation
    440Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Pedobear View Post
    Not my account , It belongs to my old developer.
    Registration IPs dont lie.

  17. #17
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Pedobear View Post
    Not my account , It belongs to my old developer.
    Quote Originally Posted by EnhanceGFX View Post
    Registration IPs dont lie.
    I think ur common sense is low.... there's your answer , since I gave him the account I guess you'll realize I made it.

  18. #18
    Member iHateFackers is offline
    MemberRank
    Aug 2010 Join Date
    72Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by EnhanceGFX View Post
    Yes you should, instead of leeching on other accounts with names like "IHateFacker.s"
    I'm here now , just hear what you said about me after Pedo called me and he is right your common sense is low , after he told you he made the account for me. I released Mocro's Database ( it was old ) last account logged in like April 5th. Military found DelPa's code on Euro didn't want to post them so I took the liberty of post them since he's so soft hearted about keeping contributions from the community,so your point isn't valid

  19. #19
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by iHateFackers View Post
    I'm here now , just hear what you said about me after Pedo called me and he is right your common sense is low , after he told you he made the account for me. I released Mocro's Database ( it was old ) last account logged in like April 5th. Military found DelPa's code on Euro didn't want to post them so I took the liberty of post them since he's so soft hearted about keeping contributions from the community,so your point isn't valid
    Forget him dude , People just don't understand us but I just remembered you are on infraction ban.

  20. #20
    Member iHateFackers is offline
    MemberRank
    Aug 2010 Join Date
    72Posts

    Re: Sword Guard Disabled

    Quote Originally Posted by Pedobear View Post
    Forget him dude , People just don't understand us but I just remembered you are on infraction ban.
    I don't care now , If this is what the Gunz Section will give you.... people accusing you of being other people , I won't stick around much longer. I'll close this thread , if you wanna have a 3 way conversation between me , Military and yourself add me James_gunzdev@hotmail.com

  21. #21
    Proficient Member taurias is offline
    MemberRank
    Dec 2008 Join Date
    178Posts

    Re: Sword Guard Disabled

    hes tufan, hes always on a warpath...



Advertisement