How to add some extra function on Source Code (Newbie Coder)

Page 22 of 22 FirstFirst ... 12141516171819202122
Results 316 to 328 of 328
  1. #316
    Member ghotlider is offline
    MemberRank
    Apr 2009 Join Date
    Бангкок,Location
    59Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    how to change Item.isf Version

  2. #317
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    Quote Originally Posted by ghotlider View Post
    how to change Item.isf Version
    GLItem.cpp
    GLItem.h

  3. #318
    Account Upgraded | Title Enabled! cz360 is offline
    MemberRank
    Jun 2012 Join Date
    230Posts

    Re: How to add some extra function on Source Code (Newbie Coder)


  4. #319
    Member ghotlider is offline
    MemberRank
    Apr 2009 Join Date
    Бангкок,Location
    59Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    Howto fix Camera login.wld

  5. #320
    Member onepieceann is offline
    MemberRank
    Jun 2011 Join Date
    92Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    Find Dx PieceDefine.h come from?

  6. #321
    Valued Member petercrow is offline
    MemberRank
    Sep 2012 Join Date
    PhilipinoLocation
    121Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    hello everyone, can teach how to read newset .x file with ep7 source, thanks for help me.

  7. #322
    Member ghotlider is offline
    MemberRank
    Apr 2009 Join Date
    Бангкок,Location
    59Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    How to Change SCROWBASIC Version

  8. #323
    Valued Member biogenic70 is offline
    MemberRank
    Oct 2011 Join Date
    139Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    Quote Originally Posted by DarkEagle View Post
    ok sir, i think i know how to

    GLCharactorReq.cpp
    Code:
    if ( m_emClass == GLCC_EXTREME_M || m_emClass == GLCC_EXTREME_W )
    	{
    		CInnerInterface::GetInstance().PrintMsgText ( NS_UITEXTCOLOR::DISABLE, ID2GAMEINTEXT("EMINVEN_GENDER_CHANGE_FB_BADCLASS") );
    		return E_FAIL;
    	}
    edit it:
    Code:
    	//if ( m_emClass == GLCC_EXTREME_M || m_emClass == GLCC_EXTREME_W )
    	//{
    		//CInnerInterface::GetInstance().PrintMsgText ( NS_UITEXTCOLOR::DISABLE, ID2GAMEINTEXT("EMINVEN_GENDER_CHANGE_FB_BADCLASS") );
    		//return E_FAIL;
    	//}
    GLCharInvenMsg.cpp
    Code:
    	if ( m_emClass == GLCC_EXTREME_M || m_emClass == GLCC_EXTREME_W )
    	{
    		MsgFB.emFB = EMINVEN_GENDER_CHANGE_FB_BADCLASS;
    		GLGaeaServer::GetInstance().SENDTOCLIENT(m_dwClientID,&MsgFB);
    		return E_FAIL;
    	}
    
    	EMCHARCLASS emClass;
        	
    	if ( m_emClass > GLCC_EXTREME_M )	emClass = (EMCHARCLASS) (m_emClass / 64 );
    	else emClass = (EMCHARCLASS) (m_emClass * 64);
    edit it:
    Code:
    	//if ( m_emClass == GLCC_EXTREME_M || m_emClass == GLCC_EXTREME_W )
    	//{
    		//MsgFB.emFB = EMINVEN_GENDER_CHANGE_FB_BADCLASS;
    		//GLGaeaServer::GetInstance().SENDTOCLIENT(m_dwClientID,&MsgFB);
    		//return E_FAIL;
    	//}
    
    	EMCHARCLASS emClass;
        	
    	if ( m_emClass > GLCC_EXTREME_M )	emClass = (EMCHARCLASS) (m_emClass / 64 );
    	else if ( m_emClass == GLCC_EXTREME_M )	emClass = (EMCHARCLASS) (m_emClass * 2);
    	else if ( m_emClass == GLCC_EXTREME_W )	emClass = (EMCHARCLASS) (m_emClass / 2);
    	else emClass = (EMCHARCLASS) (m_emClass * 64);
    i hope i will work and correct i yet try and will try after day ^^..
    Hello sorry for having poor understanding but this code use for what?
    Thanks :D

  9. #324
    Member ghotlider is offline
    MemberRank
    Apr 2009 Join Date
    Бангкок,Location
    59Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    how to change login screen??

  10. #325
    Proficient Member raman91 is offline
    MemberRank
    Jan 2014 Join Date
    IndonesiaLocation
    166Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    Quote Originally Posted by Bianx View Post
    How to set glogic.rcc password :

    Go to: Source\enginelib\Common

    Find this:
    Code:
    if( IsEncrypted( info.dwFlags ) ) // MEMO : ¾Ïȣȭ µÈ ÆÄÀÏÀ̸é...
            {
                if( unzOpenCurrentFilePassword(m_uzFile, "asdgfh") != UNZ_OK )
                    return UINT_MAX;
            }
            else
            {
                if( unzOpenCurrentFile(m_uzFile) != UNZ_OK )
                    return UINT_MAX;
            }
    Edit:

    Code:
    if( IsEncrypted( info.dwFlags ) ) // MEMO : ¾Ïȣȭ µÈ ÆÄÀÏÀ̸é...
            {
                if( unzOpenCurrentFilePassword(m_uzFile, "Yourpassword") != UNZ_OK )
                    return UINT_MAX;
            }
            else
            {
                if( unzOpenCurrentFile(m_uzFile) != UNZ_OK )
                    return UINT_MAX;
            }
    After that compile source,,
    Hope it helped!
    Source\enginelib\Common\what name file (cpp,h)???

  11. #326
    Member Hotdog is offline
    MemberRank
    Jun 2013 Join Date
    81Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    @geger09 how to add new bike animation in source for new vehicle type ferra?

  12. #327
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    Quote Originally Posted by raman91 View Post
    Source\enginelib\Common\what name file (cpp,h)???
    Unzipper.cpp

  13. #328
    Member Hotdog is offline
    MemberRank
    Jun 2013 Join Date
    81Posts

    Re: How to add some extra function on Source Code (Newbie Coder)

    @AsenDURE how to add new bike animation in source for new vehicle type?



Advertisement