I think that you need to edit some other things not the the scroll :)
The epicness!! Ahahah :DQuote:
If do you want a car, will you drive a car or magazine with car?
LPTITEMGRADEVISUAL pGradeVISUAL;
TITEMGRADEVISUALKEY Key;
Key.m_wGrade = wGradeSkin;//wGradeSkin --> IE_SEA-> wGradeSkin = 4;
Key.m_bKind = bKind;
MAPTITEMGRADEVISUAL::iterator itr = CTChart::m_mapTITEMGRADEVISUAL.find(Key);
if( itr != CTChart::m_mapTITEMGRADEVISUAL.end())
pGradeVISUAL = &(itr->second);
if( pGradeVISUAL && pGradeVISUAL->m_pSkinTex)
{
LPTEXTURESET pSkinTEX = pGradeVISUAL->m_pSkinTex;
BYTE bPSTYPE = pGradeVISUAL->m_bPSTYPE;
MAPOBJPART::iterator itr,end;
itr = pItemObj->m_OBJ.m_mapDRAW.begin();
end = pItemObj->m_OBJ.m_mapDRAW.end();
for(; itr!=end; ++itr)
{
VECTOROBJPART* pDRAW = itr->second;
for( int i=0; i<INT(pDRAW->size()); ++i)
{
LPOBJPART pPART = (*pDRAW)[i];
pPART->m_pTEX = CTClientObjBase::NewGradeObjTex(
pPART->m_pTEX,
TT_TEX,
0,
pSkinTEX,
bPSTYPE);
}
}
return ;
}