Dash colors from options menu

Page 1 of 3 123 LastLast
Results 1 to 15 of 32
  1. #1
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Dash colors from options menu

    ZEffectManager.h:

    find this:
    void AddDashEffect(rvector& Target,rvector& TargetNormal,ZObject* pObj);
    replace with this:
    void AddDashEffect(rvector& Target,rvector& TargetNormal,ZObject* pObj,int nDashColor);
    ZEffectManager.cpp:

    find void ZEffectManager::AddDashEffect function and replace the function with this:
    void ZEffectManager::AddDashEffect(rvector& Target,rvector& TargetNormal,ZObject* pObj,int nDashColor)
    {
    if (!pObj->IsVisible()) return;
    char szDash[255];
    if (nDashColor == 0 || nDashColor < 1 || nDashColor > 7) // 7 b/c roygbiv
    {
    sprintf(szDash, "dash_effect");
    }
    else
    {
    sprintf(szDash, "dash_effect%d", nDashColor);
    }


    ZEffect* pNew = NULL;
    pNew = new ZEffectDash(m_pEffectMeshMgr->Get(szDash), Target, TargetNormal, pObj->GetUID());
    ((ZEffectSlash*)pNew)->SetAlignType(1);
    Add(pNew);
    }
    ZGame.cpp:

    find this:
    pEM->AddDashEffect(vPos, vTarNormal, pCharacter);
    replace with this:
    pEM->AddDashEffect(vPos, vTarNormal, pCharacter,0);
    find this:
    ZGetEffectManager()->AddDashEffect(pos,dir,pCharacter);
    replace with this:
    ZGetEffectManager()->AddDashEffect(pos,dir,pCharacter,ppdi->nDashColor);
    ZPost.h:

    find this:
    #define ZPostDash(/*rvector&*/ vPos, /*rvector&*/ vDir, /*unsigned char*/ sel_type) { \
    ZPACKEDDASHINFO pdi; \
    pdi.posx = Roundf(vPos.x); \
    pdi.posy = Roundf(vPos.y); \
    pdi.posz = Roundf(vPos.z); \
    \
    pdi.dirx = vDir.x*32000; \
    pdi.diry = vDir.y*32000; \
    pdi.dirz = vDir.z*32000; \
    \
    pdi.seltype = sel_type; \
    ZPOSTCMD1(CLOAK_CMD_ID(MC_PEER_DASH, 9964),MCommandParameterBlob(&pdi,sizeof(ZPACKEDDASHINFO))); \
    }
    replace with this:
    #define ZPostDash(/*rvector&*/ vPos, /*rvector&*/ vDir, /*unsigned char*/ sel_type, /*int*/ nDashColor) { \
    ZPACKEDDASHINFO pdi; \
    pdi.posx = Roundf(vPos.x); \
    pdi.posy = Roundf(vPos.y); \
    pdi.posz = Roundf(vPos.z); \
    \
    pdi.dirx = vDir.x*32000; \
    pdi.diry = vDir.y*32000; \
    pdi.dirz = vDir.z*32000; \
    \
    pdi.seltype = sel_type; \
    pdi.nDashColor = nDashColor; \
    ZPOSTCMD1(CLOAK_CMD_ID(MC_PEER_DASH, 9964),MCommandParameterBlob(&pdi,sizeof(ZPACKEDDASHINFO))); \
    }
    find this:
    struct ZPACKEDDASHINFO {
    short posx, posy, posz;
    short dirx, diry, dirz;
    BYTE seltype;
    };
    replace with this:
    struct ZPACKEDDASHINFO {
    short posx, posy, posz;
    short dirx, diry, dirz;
    BYTE seltype,nDashColor;
    };
    zreplay.cpp:

    find case mc_peer_dash, replace it with this:
    case MC_PEER_DASH:
    {
    rvector pos, dir;
    int nSelType,nDashColor;

    TempParams[0]->GetValue(&pos);
    TempParams[1]->GetValue(&dir);
    TempParams[2]->GetValue(&nSelType);
    TempParams[3]->GetValue(&nDashColor);

    ZPACKEDDASHINFO pdi;
    pdi.posx = Roundf(pos.x);
    pdi.posy = Roundf(pos.y);
    pdi.posz = Roundf(pos.z);

    pdi.dirx = DirElementToShort(dir.x);
    pdi.diry = DirElementToShort(dir.y);
    pdi.dirz = DirElementToShort(dir.z);

    pdi.seltype = (BYTE)nSelType;
    pdi.nDashColor = (BYTE)nDashColor;
    pCmd->AddParameter(new MCommandParameterBlob(&pdi,sizeof(ZPACKEDDASHINFO)));
    }
    break;
    ZConfiguration.h:

    add this to ZCONFIG_VIDEO:
    int nDashColor;
    add these 2 thigns at th ebottom of the file:
    #define Z_VIDEO_DASH (ZGetConfiguration()->GetVideo()->nDashColor)
    #define ZTOK_VIDEO_DASH "DASHCOLOR"
    ZConfiguration.cpp:

    add this in loadconfig with the other ztok_video stuff:
    childElement.GetChildContents(&m_Video.nDashColor, ZTOK_VIDEO_DASH);
    add this in savetofile:
    // Dash Color
    parentElement.AppendText("\n\t\t");
    aElement = parentElement.CreateChildElement(ZTOK_VIDEO_DASH);
    sprintf(temp, "%d", m_Video.nDashColor);
    aElement.SetContents(temp);
    ZOptionInterface.cpp:
    add this to initinterfaceoption:
    pComboBox = (MComboBox*)pResource->FindWidget("DashColor")
    if(pComboBox)
    {
    pComboBox->SetSelIndex(Z_VIDEO_DASH);
    }
    add this to saveinterfaceoption:
    int nDashColor = 0;
    pComboBox = (MComboBox*)pResource->FindWidget("DashColor")
    if(pComboBox)
    {
    nDashColor = pComboBox->GetSelIndex();
    if(Z_VIDEO_DASH != nDashColor)
    {
    Z_VIDEO_DASH = nDashColor;
    }
    }

    ZMyCharacter.cpp:
    find both instances of zpostdash in this file, and replace it with this:
    ZPostDash( vPos, vDir, sel_type, Z_VIDEO_DASH );
    decompile sfx.mrs, and add 7 folders. (names 1-7). Now, add the ef_dash.elu.ani, ef.dash.elu, both gz_ef dashes, and then open effect_list.xml.

    effectlist.xml:
    Find this:
    <AddEffectElu name="dash_effect">
    <AddBaseModel name="dash_effect" filename="ef_dash.elu" />
    <AddAnimation name="play" filename="ef_dash.elu.ani" motion_type="0" motion_loop_type="lastframe" />
    </AddEffectElu>
    add this under it:
    <AddEffectElu name="dash_effect1">
    <AddBaseModel name="dash_effect1" filename="1/ef_dash.elu" />
    <AddAnimation name="play" filename="ef_dash.elu.ani" motion_type="0" motion_loop_type="lastframe" />
    </AddEffectElu>
    I'll leave the option xml side of things for you guys to do, just copy an xml that's a combobox, and rename the widget to DashColor, then add the amount of listitem's based on colors. If there's any bugs with it let me know, i rushed this in like 5 minutes.
    Last edited by jetman82; 17-07-15 at 11:47 AM.


  2. #2
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: Dash colors from options menu

    Quote Originally Posted by ahmed009 View Post
    Nice :)
    Ty, lemme know if this doesn't work. I rushed it in like 5 minutes so i may have forgotten to add stuff back (this is my old method, i have another method I use now that shares similarities, but not quite everything is the same).

  3. #3
    Member kubom21 is offline
    MemberRank
    Jun 2009 Join Date
    99Posts

    Re: Dash colors from options menu

    childElement.GetChildContents(&m_Video.nMultiSampling, ZTOK_VIDEO_DASH);
    Change "nMultiSampling" to "nDashColor"
    I got an error "e:\Stable\Gunz\ZMyCharacter.cpp(2917): error C2039: 'ndashColor' : is not a member of 'ZPACKEDDASHINFO'
    "ZPostDash( vPos, vDir, sel_type, Z_VIDEO_DASH );" <= This is the only one,there is no another ZPostDash in ZMyCharater
    Last edited by kubom21; 17-07-15 at 11:15 AM.

  4. #4
    Account Upgraded | Title Enabled! Lib is offline
    MemberRank
    Oct 2013 Join Date
    281Posts

    Re: Dash colors from options menu

    Lol at you!

  5. #5
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: Dash colors from options menu

    if there's only one then only replace the one, nmultisampling error is b/c i just sloppily pasted this into ragezone without really checking it, fixed ty for noticing. Your error is because I did a typo when typing in ragezone, it's nDashColor of course not ndashColor.

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

    Re: Dash colors from options menu

    You can add option based on HEX Color, that would be more pro and thanks!

  7. #7
    Member Ressaca is offline
    MemberRank
    Mar 2014 Join Date
    51Posts

    Re: Dash colors from options menu

    print?

  8. #8
    Member Sahar is offline
    MemberRank
    Apr 2015 Join Date
    Qiryat Yam, IsrLocation
    80Posts

    Re: Dash colors from options menu

    ZMyCharacter.cpp(2968): error C2017: illegal escape sequence
    ZMyCharacter.cpp(2968): error C2017: illegal escape sequence
    ZMyCharacter.cpp(2968): error C2059: syntax error : '('
    ZMyCharacter.cpp(2968): error C2039: 'MCommand' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'pC' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'ZNewCmd' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'UncloakCmdId' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'pC' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'AddParameter' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    c:\Users\Sahar\Desktop\Source\Source\Source_Code\Stable\Gunz\ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(228): error C2065: 'pComboBox' : undeclared identifier
    ZOptionInterface.cpp(229): error C2143: syntax error : missing ';' before 'if'
    ZOptionInterface.cpp(229): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(231): error C2227: left of '->SetSelIndex' must point to class/struct/union
    type is ''unknown-type''
    ZOptionInterface.cpp(231): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(740): error C2143: syntax error : missing ';' before 'if'
    ZOptionInterface.cpp(739): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(740): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(742): error C2227: left of '->GetSelIndex' must point to class/struct/union
    type is ''unknown-type''
    ZOptionInterface.cpp(742): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup

    O.o how much errors i follow ur tutorial step by step :(

  9. #9
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: Dash colors from options menu

    Quote Originally Posted by Sahar View Post
    ZMyCharacter.cpp(2968): error C2017: illegal escape sequence
    ZMyCharacter.cpp(2968): error C2017: illegal escape sequence
    ZMyCharacter.cpp(2968): error C2059: syntax error : '('
    ZMyCharacter.cpp(2968): error C2039: 'MCommand' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'pC' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'ZNewCmd' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'UncloakCmdId' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'pC' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C2039: 'AddParameter' : is not a member of 'ZPACKEDDASHINFO'
    ZPost.h(35) : see declaration of 'ZPACKEDDASHINFO'
    ZMyCharacter.cpp(2968): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3431): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    c:\Users\Sahar\Desktop\Source\Source\Source_Code\Stable\Gunz\ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3447): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3450): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C3861: 'MCommand': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C2227: left of '->AddParameter' must point to class/struct/union
    type is ''unknown-type''
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZMyCharacter.cpp(3457): error C3861: 'pC': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(228): error C2065: 'pComboBox' : undeclared identifier
    ZOptionInterface.cpp(229): error C2143: syntax error : missing ';' before 'if'
    ZOptionInterface.cpp(229): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(231): error C2227: left of '->SetSelIndex' must point to class/struct/union
    type is ''unknown-type''
    ZOptionInterface.cpp(231): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(740): error C2143: syntax error : missing ';' before 'if'
    ZOptionInterface.cpp(739): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(740): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup
    ZOptionInterface.cpp(742): error C2227: left of '->GetSelIndex' must point to class/struct/union
    type is ''unknown-type''
    ZOptionInterface.cpp(742): error C3861: 'pComboBox': identifier not found, even with argument-dependent lookup

    O.o how much errors i follow ur tutorial step by step :(
    Try changing #define ZPostDash to inline void ZPostDash and uncommenting the commented lines in the prototype, that'll fix one issue. The other issue is b/c you need to declare MComboBox* before pComboBox. It depends on where you put the code.

  10. #10
    Member Sahar is offline
    MemberRank
    Apr 2015 Join Date
    Qiryat Yam, IsrLocation
    80Posts

    Re: Dash colors from options menu

    ok i add this to sfx.mrs / interface.mrs / source and ingame it's dosent change the color from the normal i renamed the widget to DashColor and i still no work also i try to change to nDashColor

  11. #11
    Valued Member Broak is offline
    MemberRank
    Feb 2014 Join Date
    VenezuelaLocation
    147Posts

    Re: Dash colors from options menu

    Many laugh with you!

  12. #12
    Member Sahar is offline
    MemberRank
    Apr 2015 Join Date
    Qiryat Yam, IsrLocation
    80Posts

    Re: Dash colors from options menu

    problem fixed ty jetman for release

  13. #13
    Member shopacspeed is offline
    MemberRank
    Sep 2014 Join Date
    52Posts

    Re: Dash colors from options menu

    Nice Tks
    Last edited by shopacspeed; 22-08-15 at 07:18 AM.

  14. #14
    The forgotten memory NesuxGxx is offline
    MemberRank
    May 2014 Join Date
    ZERONISLocation
    264Posts

    Re: Dash colors from options menu

    Hello friend I have a problem in the dash source that provided it that I can give Stand

  15. #15
    TBF Guru jetman82 is offline
    MemberRank
    Jan 2009 Join Date
    631Posts

    Re: Dash colors from options menu

    Quote Originally Posted by NesuxGxx View Post
    Hello friend I have a problem in the dash source that provided it that I can give Stand
    Just saying you have an error doesn't help me figure out the problem, what exactly is visual studio saying?



Page 1 of 3 123 LastLast

Advertisement