Jump to content
Sign in to follow this  
Jigsor

Line break in lobyy parameter text

Recommended Posts

I need a line break in lobby parameter text because it is either getting cropped or runs off right side of screen.

Structured text works fine in sqf but no luck within such context in description.ext.

So I've tried stringtable.csv but the line shows up blank or shows string call verbatim when in lobby.

//description.ext
class Params
{
   class Custom_Param_A
   {
title = "Selected Mod";
values[]={1,2};
texts[] = {
STR_CSAT_REQ,
"AAF - Requirements : None",
default = 1;
};
};

//stringtable.csv located in mission root
Language,English
STR_CSAT_REQ,	CSAT Requirements None

Some calls to the text I've tried are:

texts[] = {

{STR_CSAT_REQ},
STR_CSAT_REQ,
{$STR_CSAT_REQ},
$STR_CSAT_REQ,
"STR_CSAT_REQ",
"$STR_CSAT_REQ",
(localize "STR_CSAT_REQ"),
{(localize "STR_CSAT_REQ")},

Is this an engine limitation or can it be done some how?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×