The example definitely wasn’t made by the normal SII commands (it’s another font, e.g.). But you can, if you use the
text command. Just put it in your event, e.g. you want to see that text right away, put in the Global Script of your map:
on:start
{
	text 1,"This is an amazing text!";
}
If it’s required to be on the left side under the status, you can use the x,y values of about 5,55:
on:start
{
	text 1,"This is an amazing text!",0,5,55;
}