ID:164255
 
Is it possible to change the ingame font size?
Like, the default font size for BYOND is 10, is it possible to make a game have a default font size of 8?

Example : You can change the screen size from the default of 6 to anything ranging from 1 to 10:
world
view = 6

Or by having a verb that changes client.view to anything ranging from 1 to 10, 10 being the biggest.
You can use styles or the font tag. I would go with the former.
In response to Shlaklava
How would I code that without having to put a font tag on everything ingame?
In response to KalibreX
client
script = {"<style>
body{font: 10pt "Verdana";}
</style>
"}

Change Verdana to your game font and the 10pt into your font size.
In response to Smokey Joe
Using that is changing all the other display settings. Could you put font colour and background colour fixes please?

[EDIT: Nevermind, fixed it myself. Thanks to all who helped.]