Death, kills balanced with color

Results 1 to 4 of 4
  1. #1
    Developer / Patch Finder Tankado is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    451Posts

    config Death, kills balanced with color

    hello,

    Death, kills balanced with color:
    Open ZCombatInterface.cpp
    Line: 2581
    PHP Code:
    Orginal:

        
    x=ITEM_XPOS[3];
        
    sprintf(szText,"%d",pItem->nKills);
        
    TextRelative(pDC,x,texty,szText,true); 
    PHP Code:
    Edit to:

        
    x=ITEM_XPOS[3];
        
    sprintf(szText,"%d",pItem->nKills);
        if(
    pItem->nKills == pItem->nDeaths)
        
    pDC->SetColor2551500);  //ORANGE 
        
    else if(pItem->nKills pItem->nDeaths)
        
    pDC->SetColor25500);   // RED
        
    else if(pItem->nKills pItem->nDeaths)
        
    pDC->SetColor02550);   // GREEN 
        
    TextRelative(pDC,x,texty,szText,true); 

    Line: 2588
    PHP Code:
    Orginal:

        
    x=ITEM_XPOS[4];
        
    sprintf(szText,"%d",pItem->nDeaths);
        
    TextRelative(pDC,x,texty,szText,true); 
    PHP Code:
    Edit to:

        
    x=ITEM_XPOS[4];
        
    sprintf(szText,"%d",pItem->nDeaths);
        if(
    pItem->nDeaths == pItem->nKills)
        
    pDC->SetColor2551500);  //ORANGE
        
    else if(pItem->nDeaths pItem->nKills)
        
    pDC->SetColor25500);   // RED
        
    else if(pItem->nDeaths pItem->nKills)
        
    pDC->SetColor02550);   // GREEN 
        
    TextRelative(pDC,x,texty,szText,true); 

    Example:
    Deaths - Kills
    0 - 0 (orange)
    1 - 0 (red)
    0 - 1 (Green)


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

    Re: Death, kills balanced with color

    Smart idea, thanks

  3. #3
    Developer / Patch Finder Tankado is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    451Posts

    Re: Death, kills balanced with color

    hahaha qet :P

  4. #4
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    Re: Death, kills balanced with color

    This color shit again?



Advertisement