ID:972606
 
(See the best response by Tyrannicide.)
Code:


Problem description:
I was wondering if theres a way to install a custom font file on a player's computer for use with my skin or am i stuck with the default font styles byond comes with?

thanks ahead


Best response
You'll have to pack custom fonts in the resources that aren't already installed on everyone's system. You can do this by defining the resources you'd like to include into the game. Here's an example from the Skin Reference.

var/list/extra_resources = list(\
'myfont.ttf',
'myfont_bold.ttf')
output still isnt showing text with the font i want....
Make sure the font file is in the folder, and include that code to reference it. Then compile.
My bad , it worked , just a screw up on my end :P...
thanks to you both