I dont see the clan score or clan war button please help !

Results 1 to 14 of 14
  1. #1
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    smile I dont see the clan score or clan war button please help !

    Hi , the title sais it all.




  2. #2
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Rejain View Post
    Hi , the title sais it all.


    It's a quest server.

  3. #3
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: I dont see the clan score or clan war button please help !

    Loled/..its test mode... make combine server with clan+quest or simply change mode=clan in server.ini

  4. #4
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Ronny786 View Post
    Loled/..its test mode... make combine server with clan+quest or simply change mode=clan in server.ini
    Well , i guess i didnt check it good enough and THANK YOU SO MUCH

    how to i make it combined ? i now dont have quest ..

  5. #5
    Daemonsring Developer Gunblade is offline
    MemberRank
    Jul 2007 Join Date
    On the moonLocation
    728Posts

    Re: I dont see the clan score or clan war button please help !

    There are checks everywhere in the source.
    At places you will find stuff like: if(mode == clan), you must change it to if(mode == clan || mode == test) <- This is a very basic example and the names in the source will differ from this.
    Anyway, hope you will be able to figure it out now.

  6. #6
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Gunblade View Post
    There are checks everywhere in the source.
    At places you will find stuff like: if(mode == clan), you must change it to if(mode == clan || mode == test) <- This is a very basic example and the names in the source will differ from this.
    Anyway, hope you will be able to figure it out now.
    Look , i've looked for the code using ctrl+f on the entire solution and it said specifed text was not found any idea's ? thank's anyway :D

  7. #7
    Daemonsring Developer Gunblade is offline
    MemberRank
    Jul 2007 Join Date
    On the moonLocation
    728Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Rejain View Post
    Look , i've looked for the code using ctrl+f on the entire solution and it said specifed text was not found any idea's ? thank's anyway :D
    Search for MSM_CLAN. (Quest mode is MSM_TEST)

  8. #8
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Gunblade View Post
    Search for MSM_CLAN. (Quest mode is MSM_TEST)
    Ok i looked for it , and found what to do now ? am i misunderstanding something ? im pretty confused ...

  9. #9
    Daemonsring Developer Gunblade is offline
    MemberRank
    Jul 2007 Join Date
    On the moonLocation
    728Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Rejain View Post
    Ok i looked for it , and found what to do now ? am i misunderstanding something ? im pretty confused ...
    There are lots of parts in the source which have switches, ifs and such with the clan mode in it, you must add or replace that (best to add) with the Quest Server mode.
    It's kinda hard to explain and it requires a bit of experience to do it.

  10. #10
    Member qqq1 is offline
    MemberRank
    Apr 2011 Join Date
    koreaLocation
    73Posts

    Re: I dont see the clan score or clan war button please help !

    Server.ini
    Mode=clan
    cscommon,gunz
    MSM_test->MSM_CLAN

  11. #11
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by qqq1 View Post
    Server.ini
    Mode=clan
    cscommon,gunz
    MSM_test->MSM_CLAN
    Thank you , i tried it but i got an error while compiling :

    [CODE]
    Gunz Solution :
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(67) : error C2143: syntax error : missing '}' before '->'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(67) : error C2143: syntax error : missing ';' before '->'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(67) : error C2059: syntax error : '->'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(71) : error C2143: syntax error : missing ';' before '}'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(71) : error C2059: syntax error : '}'

    CSCommon Solution :
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(67) : error C2143: syntax error : missing '}' before '->'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(67) : error C2143: syntax error : missing ';' before '->'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(67) : error C2059: syntax error : '->'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(71) : error C2143: syntax error : missing ';' before '}'
    \Gunz\Stable\CSCommon\Include\MMatchGlobal.h(71) : error C2059: syntax error : '}'

  12. #12
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: I dont see the clan score or clan war button please help !

    Replace the lines.

    zgameinterface.cpp:(line 2010)

    bool bClanBattleUI = (((ZGetGameClient()->GetServerMode() == MSM_CLAN) || (ZGetGameClient()->GetServerMode() == MSM_TEST)) && (ZGetGameClient()->GetChannelType()==MCHANNEL_TYPE_CLAN));

    line 5443:
    bool bClanBattleUI = ((nCurrentServerMode== MSM_CLAN) || (nCurrentServerMode == MSM_TEST)) && (nCurrentChannelType==MCHANNEL_TYPE_CLAN);

    line 5790:
    bool bClanServer = (ZGetGameClient()->GetServerMode()==MSM_CLAN || ZGetGameClient()->GetServerMode()==MSM_TEST);

    MMatchstage.cpp:

    line 861:

    if ((MGetServerConfig()->GetServerMode() == MSM_LADDER) || (MGetServerConfig()->GetServerMode() == MSM_CLAN) || (MGetServerConfig()->GetServerMode() == MSM_TEST))

    line: 60
    if((MSM_CLAN != MGetServerConfig()->GetServerMode()) && (MSM_TEST != MGetServerConfig()->GetServerMode()) && (bIsAllowNullChannel == false) ) {


    MMatchObject.cpp:

    line: 197
    if ((pChannel) && (pChannel->GetChannelType() == MCHANNEL_TYPE_CLAN) && (MGetServerConfig()->GetServerMode() == MSM_TEST))
    MMatchserver.cpp

    line: 491
    if ((MGetServerConfig()->GetServerMode() == MSM_CLAN) || (MGetServerConfig()->GetServerMode() == MSM_TEST))
    line :1117
    if ((MGetServerConfig()->GetServerMode() == MSM_CLAN) || (MGetServerConfig()->GetServerMode() == MSM_TEST))

    MMatchServer_Channel.cpp
    line 162:
    } else if ( (MGetServerConfig()->GetServerMode() == MSM_CLAN) || (MGetServerConfig()->GetServerMode() == MSM_TEST) || (MGetServerConfig()->GetServerMode() == MSM_MATCH)) {

    MMatchServer_char.cpp
    line 233:
    if ((MGetServerConfig()->GetServerMode() == MSM_CLAN) || (MGetServerConfig()->GetServerMode() == MSM_TEST))

    MMatchServer_Ladder.cpp:
    line 78:
    if ((MGetServerConfig()->GetServerMode() != MSM_LADDER) &&
    (MGetServerConfig()->GetServerMode() != MSM_CLAN) &&
    (MGetServerConfig()->GetServerMode() != MSM_TEST)) return;
    MMatchServer_stage.cpp:

    line 882:
    if ((MGetServerConfig()->GetServerMode() == MSM_TEST) && (pChannel->GetChannelType() == MCHANNEL_TYPE_CLAN)
    line 2504:
    if ((MGetServerConfig()->GetServerMode() == MSM_TEST) && (pChannel->GetChannelType() == MCHANNEL_TYPE_CLAN))
    MMatchConfig.h
    line 201:
    const bool IsClanServer() { return (MSM_CLAN == m_nServerMode || MSM_TEST == m_nServerMode); }




    I think this is much enough for you.. if any values left, just do what i did in above codes.. i hope you understood some of it...

    n i deserve pretty like for such an effort xD

  13. #13
    Account Upgraded | Title Enabled! Rejain is offline
    MemberRank
    Jul 2012 Join Date
    201Posts

    Re: I dont see the clan score or clan war button please help !

    Quote Originally Posted by Ronny786 View Post
    Replace the lines.

    zgameinterface.cpp:(line 2010)




    line 5443:



    line 5790:



    MMatchstage.cpp:

    line 861:




    line: 60




    MMatchObject.cpp:

    line: 197


    MMatchserver.cpp

    line: 491


    line :1117



    MMatchServer_Channel.cpp
    line 162:



    MMatchServer_char.cpp
    line 233:



    MMatchServer_Ladder.cpp:
    line 78:


    MMatchServer_stage.cpp:

    line 882:


    line 2504:


    MMatchConfig.h
    line 201:






    I think this is much enough for you.. if any values left, just do what i did in above codes.. i hope you understood some of it...

    n i deserve pretty like for such an effort xD
    You do deserve a like for the effort but dosent work :'(

  14. #14
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: I dont see the clan score or clan war button please help !

    1 thing forgot to tell ya... change mode=test in server.ini :D

    it does work buddy..



Advertisement