Unmask Admin Wall [1.5]

Results 1 to 6 of 6
  1. #1
    Yaaay! Tannous is offline
    MemberRank
    Jul 2012 Join Date
    KonohaLocation
    840Posts

    Unmask Admin Wall [1.5]

    Well, I've searched everywhere for it, but I couldn't find any post which shows how. So I decided to post it...

    ZChat_Cmds.cpp

    Search for: "ChatCmd_AdminAnnounce" (without " of course) where the code is:
    Code:
    void ChatCmd_AdminAnnounce(const char* line, const int argc, char **const argv)
    {
    	if (argc < 2) 
    	{
    		OutputCmdWrongArgument(argv[0]);
    		return;
    	}
    
    	char szMsg[256];
    	strcpy(szMsg, argv[1]);
    	ZPostAdminAnnounce(ZGetGameClient()->GetPlayerUID(), szMsg, ZAAT_CHAT);
    }
    Now simply replace the line with:
    Code:
    strcpy(szMsg, argv[1]);
    to this:
    Code:
    sprintf(szMsg,"%s : %s",ZGetMyInfo()->GetCharName(), argv[1]);
    -Save then build.
    ------------------------------------------------------------------
    NOTE:For the proffesional coders, don't say it's easy and old, I know that it's the most easy code for you, but still some people who don't know and I'm posting for them. Instead, I'm still noob/very very bad coder, so I post as I can ;)


  2. #2
    Account Upgraded | Title Enabled! Wish Q is offline
    MemberRank
    Jul 2012 Join Date
    LiveScoreLocation
    456Posts

    Re: Unmask Admin Wall [1.5]

    this was release alreaddy?

  3. #3
    Yaaay! Tannous is offline
    MemberRank
    Jul 2012 Join Date
    KonohaLocation
    840Posts

    Re: Unmask Admin Wall [1.5]

    Quote Originally Posted by Wish Q View Post
    this was release alreaddy?
    I don't know, but I've searched everywhere and didn't see any post which tells how to unmask admin wall O.o

  4. #4
    Account Upgraded | Title Enabled! Wish Q is offline
    MemberRank
    Jul 2012 Join Date
    LiveScoreLocation
    456Posts

    Re: Unmask Admin Wall [1.5]

    Quote Originally Posted by Tannous View Post
    I don't know, but I've searched everywhere and didn't see any post which tells how to unmask admin wall O.o
    ok i think someone did post but no release ^^

  5. #5
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: Unmask Admin Wall [1.5]

    Well, i released it but not in this way. It's on admin popup message

    http://forum.ragezone.com/f245/admin...essage-872961/

  6. #6
    Yaaay! Tannous is offline
    MemberRank
    Jul 2012 Join Date
    KonohaLocation
    840Posts

    Re: Unmask Admin Wall [1.5]

    Quote Originally Posted by qet123 View Post
    Well, i released it but not in this way. It's on admin popup message

    http://forum.ragezone.com/f245/admin...essage-872961/
    Yeah, I've seen it, and said why don't we release it for admin wall :D
    Any way I hope it helps someone ;)



Advertisement