Shadow Font

ZkaRu

Pirate
Registered
LV
0
 
Joined
Jan 27, 2026
Messages
7
Solutions
1
Reaction score
2
Points
5
1771514046495.webp

I saw alot of ppl asking for this font, this isnt a specific font, u can modify it at UIHeadSay.cpp -> void CHeadSay::Render( D3DXVECTOR3& pos ) -> look for this "CGuiFont::s_Font.BRender(s_sNamePart, x + iStartPosX, y - iNameHeightStep, s_dwNamePartsColors[0], s_dwNamePartsColors[1]);" and replace with:
int px = x + iStartPosX;
int py = y - iNameHeightStep;

DWORD textColor = s_dwNamePartsColors[0];
DWORD outline = 0xFF000000; // black (u can change it)

for (int ox = -2; ox <= 2; ox++)
{
for (int oy = -2; oy <= 2; oy++)
{
if (ox == 0 && oy == 0) continue;
CGuiFont::s_Font.Render(s_sNamePart, px + ox, py + oy, outline);
}
}

CGuiFont::s_Font.Render(s_sNamePart, px, py, textColor);
and thats it, u can change font too, at scripts->lua->font.clu
 
  • Like
Reactions: Grim4ik