Jigsor 176 Posted December 10, 2014 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
dreadedentity 278 Posted December 11, 2014 well you could always try \n might work Share this post Link to post Share on other sites
jshock 513 Posted December 11, 2014 Not sure if anything in the following thread can be applied to things under the class params, but it's worth a look see: http://forums.bistudio.com/showthread.php?183964-Line-Break-in-text Share this post Link to post Share on other sites