Where I locate this message?

Results 1 to 9 of 9
  1. #1
    Enthusiast xJuanxDx is offline
    MemberRank
    Feb 2012 Join Date
    26Posts

    note Where I locate this message?

    Hello this one I have a doubt they know that when one has several hours playing inside the gunz they a message appears but ami it me appears in koreano they might say to me in that it divides I it can be located to edit and to accommodate it.



  2. #2
    Valued Member lil_Homie is offline
    MemberRank
    May 2010 Join Date
    134Posts

    Re: Where I locate this message?

    This seems like it can be refered here:

    http://forum.ragezone.com/f497/tut-1-5-fix-gunz-853555/

  3. #3
    Enthusiast xJuanxDx is offline
    MemberRank
    Feb 2012 Join Date
    26Posts

    Re: Where I locate this message?

    Gun-sight men know that I it is in the part of the message where your you say I put my personalized message compile but wait for it 1 hour and the same message continues going out for me:S that problem

  4. #4
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: Where I locate this message?

    That a message warning time play but it was written by Hangul.
    I think it appear on ZCombatInterface.cpp check it now !

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

    Re: Where I locate this message?

    File: ZGameInterface.cpp
    Line: 3500 ish
    Code:
    	// 청소년 자율 규제 적용안(쓰벌쓰벌쓰벌...). 1시간마다 메시지 조낸 날리는거다...
    #ifdef LOCALE_KOREA			// 한국에서만 이짓거리 한당...
    	if ( timeGetTime() >= m_dwTimeCount)
    	{
    		m_dwTimeCount += 3600000;
    		m_dwHourCount++;
    
    		char szText[ 256];
    		if ( m_dwHourCount > 3)
    			sprintf( szText, "%d 시간이 경과했습니다. 잠시 휴식을 취하시기 바랍니다.", m_dwHourCount);
    		else
    			sprintf( szText, "%d 시간이 경과 하였습니다.", m_dwHourCount);
    		ZChatOutput( MCOLOR(ZCOLOR_CHAT_SYSTEM), szText);
    
    
    		ZChatOutput( MCOLOR(ZCOLOR_CHAT_SYSTEM), "본 게임은 15세 이용가로서 만 15세 미만은 이용할 수 없습니다.");
    	}
    #endif
    Comment out this bit.
    Last edited by Mark; 09-09-12 at 03:07 PM.

  6. #6
    Proficient Member [S]pirit is offline
    MemberRank
    Apr 2009 Join Date
    182Posts

    Re: Where I locate this message?


  7. #7
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: Where I locate this message?

    Mark : Why i can't see this message on hangul ?
    I sure that i have Korean Package Language.
    And sorry Juan, it's from ZGameInterface.cpp

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

    Re: Where I locate this message?

    Quote Originally Posted by Gun[Lengend] View Post
    Mark : Why i can't see this message on hangul ?
    I sure that i have Korean Package Language.
    And sorry Juan, it's from ZGameInterface.cpp
    I'm not sure about in-game, as I don't see it either.

    But for VS, you can open with a specific encoding so that you can see the correct characters. Useful for when you want to see what comments say and such.

  9. #9
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: Where I locate this message?

    Oh thank Mark.



Advertisement