Disable /suicide

Results 1 to 18 of 18
  1. #1
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Disable /suicide

    Title says... (with asm). for 2008..
    Last edited by sahar042; 24-06-11 at 11:07 AM.


  2. #2
    Proficient Member Twist165 is offline
    MemberRank
    May 2011 Join Date
    167Posts

    Re: Disable /suicide

    why would wana do that?

  3. #3
    Apprentice Alexxx is offline
    MemberRank
    Feb 2011 Join Date
    22Posts

    Re: Disable /suicide

    Quote Originally Posted by Twist165 View Post
    why would wana do that?
    because, a lot of people always leave or suicide before they die so that their K/D ratio doesn't go down and people don't get exp. idk if that's the case for this server, but i've seen it.

  4. #4
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: Disable /suicide

    Quote Originally Posted by Alexxx View Post
    because, a lot of people always leave or suicide before they die so that their K/D ratio doesn't go down and people don't get exp. idk if that's the case for this server, but i've seen it.
    that why so someon can give me?

  5. #5
    Account Upgraded | Title Enabled! fred94 is offline
    MemberRank
    Jun 2008 Join Date
    250Posts

    Re: Disable /suicide

    In hex, find /suicide and replace by something fucked up.

  6. #6
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: Disable /suicide

    Quote Originally Posted by fred94 View Post
    In hex, find /suicide and replace by something fucked up.
    i search i notfound that why i ask.

  7. #7
    Banned mhmd135 is offline
    BannedRank
    Jul 2010 Join Date
    437Posts

    Re: Disable /suicide

    Quote Originally Posted by sahar042 View Post
    i search i notfound that why i ask.
    use anthor clean runnable

  8. #8
    Intelligent DoucheBag jur13n is offline
    MemberRank
    Jan 2008 Join Date
    Zwolle,Location
    1,946Posts
    Quote Originally Posted by fred94 View Post
    In hex, find /suicide and replace by something fucked up.
    since when this crap is called help..
    i am not a asm genius but hex edit is bullshit.

    sorry for my offensive language last time phoenix, but it is just the truth.

    ask an asm coder or learn it yourself.

  9. #9
    Proficient Member Twist165 is offline
    MemberRank
    May 2011 Join Date
    167Posts

    Re: Disable /suicide

    well hex editing dose the job ,but it dosent disable all it dose is change the /suicide to other stuff.
    and yeah i agree its a stupid way

  10. #10
    Ecchi addicted adz28 is offline
    MemberRank
    Nov 2008 Join Date
    IkebukuroLocation
    524Posts

    Re: Disable /suicide

    Open the runnable in OllyDBG, search for all referenced text strings, search for suicide or something like that, when you fond it, follow it in disassembler and NOP the address.

  11. #11
    Proficient Member Twist165 is offline
    MemberRank
    May 2011 Join Date
    167Posts

    Re: Disable /suicide

    NOP will kill the whole shit bad idea

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

    Re: Disable /suicide

    Quote Originally Posted by Twist165 View Post
    NOP will kill the whole shit bad idea
    Seriously /suicide is the worse command ever made.

  13. #13
    Ecchi addicted adz28 is offline
    MemberRank
    Nov 2008 Join Date
    IkebukuroLocation
    524Posts

    Re: Disable /suicide

    Quote Originally Posted by Twist165 View Post
    NOP will kill the whole shit bad idea
    Then Binary edit it, in ascii part change the name of the command and make it "/idgaf" LOL

  14. #14

    Re: Disable /suicide

    Simply NOP the function call to MMatchServer::OnRequestSuicide at MMatchServer::OnCommand.

    OR

    Remove the command "/suicide" from the runnable using NOP over the function that deals with adding the command callback for it.
    Last edited by Linear88; 25-06-11 at 10:00 AM.

  15. #15
    Valued Member Cock is offline
    MemberRank
    May 2011 Join Date
    Vaginas.Location
    115Posts

    Re: Disable /suicide

    The /suicide command it self isn't located in OllyDbg neither Hex editing lol.

  16. #16

    Re: Disable /suicide

    Quote Originally Posted by Cock View Post
    The /suicide command it self isn't located in OllyDbg neither Hex editing lol.
    That's because "/suicide" is being fetched off the string table.

    Code:
    0042EAAC  |. 6A 01          PUSH 1
    0042EAAE  |. 6A FF          PUSH -1
    0042EAB0  |. 6A FF          PUSH -1
    0042EAB2  |. 6A 04          PUSH 4
    0042EAB4  |. 68 10C04200    PUSH Gunz_(Un.0042C010
    0042EAB9  |. 6A 0F          PUSH 0F                                  ;  ChatCmds => '/suicide' (CMD ID: 15 / 0x0F, <STR id="CMD_NAME_15">suicide</STR>)
    0042EABB  |. 8D55 E4        LEA EDX,DWORD PTR SS:[EBP-1C]
    0042EABE  |. 52             PUSH EDX
    0042EABF  |. 56             PUSH ESI
    0042EAC0  |. E8 0BF8FFFF    CALL Gunz_(Un.0042E2D0
    0042EAC5  |. 6A 01          PUSH 1                                   ; |Arg8 = 00000001
    0042EAC7  |. 6A FF          PUSH -1                                  ; |Arg7 = FFFFFFFF
    0042EAC9  |. 6A FF          PUSH -1                                  ; |Arg6 = FFFFFFFF
    0042EACB  |. 6A 04          PUSH 4                                   ; |Arg5 = 00000004
    0042EACD  |. 68 80D44200    PUSH Gunz_(Un.0042D480                   ; |Arg4 = 0042D480
    0042EAD2  |. 6A 10          PUSH 10                                  ; |Arg3 = 00000010
    0042EAD4  |. 8D45 E4        LEA EAX,DWORD PTR SS:[EBP-1C]            ; |
    0042EAD7  |. 50             PUSH EAX                                 ; |Arg2
    0042EAD8  |. 56             PUSH ESI                                 ; |Arg1
    0042EAD9  |. E8 F2F7FFFF    CALL Gunz_(Un.0042E2D0                   ; \Gunz_(Un.0042E2D0
    0042EADE  |. 83C4 40        ADD ESP,40

  17. #17
    Valued Member Cock is offline
    MemberRank
    May 2011 Join Date
    Vaginas.Location
    115Posts

    Re: Disable /suicide

    Wait so, If I basically hook up to that address, I could manage to change /suicide to something else?

  18. #18
    Balance Elian is offline
    MemberRank
    Sep 2009 Join Date
    StarLocation
    1,768Posts

    Re: Disable /suicide

    You should make /suicide like ijji, like 10 seconds of not moving and then you die.



Advertisement