Hey elitepvpers,
I am trying to put in small image in front of an DST parameter.
Example
str.Format("\n%s %c%d", FindDstString(nDst), (nAdj >= 0 ? '+' : '-'), ::abs(nAdj));
Above will output STA+21
Now i whant some sort of an list image that you have in html.
Above code will output
[Only registered and activated users can see links. Click Here To Register...]
Is this even possible? or do i need to change some more code?
I am trying to put in small image in front of an DST parameter.
Example
str.Format("\n%s %c%d", FindDstString(nDst), (nAdj >= 0 ? '+' : '-'), ::abs(nAdj));
Above will output STA+21
Now i whant some sort of an list image that you have in html.
Code:
CTexture* m_pPrimaryStatTexture;
m_pPrimaryStatTexture = CWndBase::m_textureMng.AddTexture(g_Neuz.m_pd3dDevice, MakePath(DIR_ICON, "primary.png"), 0xffff00ff);
str.Format("\n%s%s %c%d", m_pPrimaryStatTexture, FindDstString(nDst), (nAdj >= 0 ? '+' : '-'), ::abs(nAdj));
[Only registered and activated users can see links. Click Here To Register...]
Is this even possible? or do i need to change some more code?