LordHelmut
06-11-2002, 11:50 AM
Alright, I got a problem. In my game, I display the persons nickname below their character. I got that working fine but I cant figure out how to make it align correctly. I just did
Private Sub DrawText()
'line to print text out
Call ddsBackBuffer.DrawText(Player.X - 30, Player.Y + 50, "Lord Helmut", False)
End Sub
and that works fine but how could I fix that so no matter what text was the nick name (will be inputted from text file) is centered?
Private Sub DrawText()
'line to print text out
Call ddsBackBuffer.DrawText(Player.X - 30, Player.Y + 50, "Lord Helmut", False)
End Sub
and that works fine but how could I fix that so no matter what text was the nick name (will be inputted from text file) is centered?