i do but dont find it lol
Edit:
Have fixed duration if i changed
ar >> nCount;
for( int i = 0; i < nCount; ++i )
{
ar >> nTemp;
strBuff.Format(prj.GetText(TID_GAME_MINUTES),nTemp );
nIdx = m_pComboTime->AddString(strBuff);
m_pComboTime->SetItemData(nIdx,nTemp);
}
to
ar >> nCount;
for( int i = 0; i < nCount; ++i )
{
ar >> nTemp;
strBuff.Format("%d %s",nTemp, prj.GetText(TID_GAME_MINUTES));
nIdx = m_pComboTime->AddString(strBuff);
m_pComboTime->SetItemData(nIdx,nTemp);
}
and add
TID_GAME_MINUTES 0xff000000
{
"Minuten"
}
in textClient.inc
But i dont know how to show the Types like CTF, TD and so on.