How to Unmask GM

Results 1 to 16 of 16
  1. #1
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    How to Unmask GM

    First of all, whats the code for GM and how can the GM's name be showed unmasked?


  2. #2
    Member jeffro is offline
    MemberRank
    Sep 2008 Join Date
    68Posts

    Re: How to Unmask GM

    You need to edit the runable in asm for that. Wizkid knows how :)

  3. #3
    Proficient Member NIRVANAdylan is offline
    MemberRank
    Feb 2007 Join Date
    179Posts

    Re: How to Unmask GM

    Quote Originally Posted by bounty-hunter View Post
    First of all, whats the code for GM and how can the GM's name be showed unmasked?
    Gunz uses multiple functions for covering the name up actually. Like: ZCharacter::IsAdminName and more.

    Just take a look at theduel.exe / gunz.exe in ollydbg and see when an admin is in the lobby and look to see when it uses strings.xml to produce the Administrator or Developer strings to replace/mask the current user/character name, once you have it simply stop the whole function from actually happening.

    Quote Originally Posted by jeffro View Post
    You need to edit the runable in asm for that. Wizkid knows how :)
    By the way, runnables are just something with the serialkey taken out so that you can run it by double clicking, so if bounty opens it with a GunzLauncher, it is not a runnable ;)

  4. #4
    Programming Addict Lambda is offline
    MemberRank
    Sep 2007 Join Date
    SpainLocation
    393Posts

    Re: How to Unmask GM

    UGradeID 252

  5. #5
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: How to Unmask GM

    Quote Originally Posted by Lambda View Post
    UGradeID 252
    Had to lol

  6. #6
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: How to Unmask GM

    252
    -- nvm didn't see lambda said so lol

  7. #7
    -- Nayr438 is offline
    MemberRank
    May 2008 Join Date
    241Posts

    Re: How to Unmask GM

    After looking at gunzold, Im just going to take a guess at this
    GunzOld:
    Code:
    46A590: ZCharacter::IsAdminName (8B 81 4E 04 00 00 3D FE 00 00 00 74 0A 3D FF )
    GunzNew:
    Code:
    473920: ZCharacter::IsAdminName (8B 81 5A 04 00 00 3D FE 00 00 00 74 0A 3D FF )

  8. #8
    Who is the cow! sari4ever is offline
    MemberRank
    Apr 2007 Join Date
    Holy LandLocation
    790Posts

    Re: How to Unmask GM

    narutouzomaki is pro asmer

    ask him he make things for free

  9. #9
    Programming Addict Lambda is offline
    MemberRank
    Sep 2007 Join Date
    SpainLocation
    393Posts

    Re: How to Unmask GM

    Quote Originally Posted by ThievingSix View Post
    Had to lol
    252 = admin without color and administrator/developer string, if he want to maintain the color in the name, then asm xD

  10. #10
    Account Upgraded | Title Enabled! hiii is offline
    MemberRank
    Sep 2007 Join Date
    387Posts

    Re: How to Unmask GM

    Then how do u like umm... UGrade 254...... like instead GameMaster/Developer how about the player's name in orange? :D

  11. #11
    RestyleGamerZ FTW Mambo is offline
    MemberRank
    Mar 2008 Join Date
    The NetherlandsLocation
    821Posts

    Re: How to Unmask GM

    Well the trinity runnable was very helpful for this. Since you can look up some addresses

    If you know what your are doing, not in my case =P

  12. #12
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: How to Unmask GM

    Quote Originally Posted by Nayr438 View Post
    After looking at gunzold, Im just going to take a guess at this
    GunzOld:
    Code:
    46A590: ZCharacter::IsAdminName (8B 81 4E 04 00 00 3D FE 00 00 00 74 0A 3D FF )
    GunzNew:
    Code:
    473920: ZCharacter::IsAdminName (8B 81 5A 04 00 00 3D FE 00 00 00 74 0A 3D FF )
    Just look where Gunz outputs his staffnames. For example: ASCII "%s %s" and ASCII "--". Same counts for the teamchat. Go there and look where it puts the string over it, then edit it to the current charname or just simple NOP it. It depends on where it's used.

    Quote Originally Posted by hiii View Post
    Then how do u like umm... UGrade 254...... like instead GameMaster/Developer how about the player's name in orange? :D
    There is a function in Gunz that puts the color over the staffnames. It puts the same color over the 254 and 255 one, but different from eachother. So you can easily edit the color. And if you've seen how the colors work, you can create new UGradeID's easily.

    The hardest part will be the function that puts the string over the staffname to show up in the TAB scorelist and above your head in TDM and such. And the admin_wall will need a function that sends the charname in front of the message.

  13. #13
    Proficient Member NIRVANAdylan is offline
    MemberRank
    Feb 2007 Join Date
    179Posts

    Re: How to Unmask GM

    Quote Originally Posted by Wizkidje View Post
    Just look where Gunz outputs his staffnames. For example: ASCII "%s %s" and ASCII "--". Same counts for the teamchat. Go there and look where it puts the string over it, then edit it to the current charname or just simple NOP it. It depends on where it's used.



    There is a function in Gunz that puts the color over the staffnames. It puts the same color over the 254 and 255 one, but different from eachother. So you can easily edit the color. And if you've seen how the colors work, you can create new UGradeID's easily.

    The hardest part will be the function that puts the string over the staffname to show up in the TAB scorelist and above your head in TDM and such. And the admin_wall will need a function that sends the charname in front of the message.
    That sounds somewhat similar to what i just said in a post, hmm =/

  14. #14
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: How to Unmask GM

    Quote Originally Posted by NIRVANAdylan View Post
    That sounds somewhat similar to what i just said in a post, hmm =/
    Possible, I just woke up, I didn't read everything.

    Btw, about that IsAdminName, that function is just there to let the 254 and 255 grade show up as Administrator in the TAB list and such. It puts the string over it at another place. Me, myself and I added the 252 grade to this function so the 252 grade shows up as Administrator too. (After you've edited the other function to color it, etc.)

  15. #15
    Apprentice _*Counter*_ is offline
    MemberRank
    Apr 2010 Join Date
    17Posts

    Re: How to Unmask GM

    i dont know if its help but :

    Account Grades
    Administrator - 255
    Developer - 254
    Banned - 253
    Administrator (with normal name) - 252
    Jjang - 2 (event winner)
    Normal User - 0


    ----if i helped click Thx----

  16. #16
    Animu Addicted Number12 is offline
    MemberRank
    Apr 2008 Join Date
    Old Sunny CALocation
    1,264Posts

    Re: How to Unmask GM

    wow wtf dont bump such old stuff man. There are tutorials for this stuff



Advertisement