How to make new text line in Civ5 Lua? In player notification tag "\n" dosent work? What I did wrong:
the result is that "\n" is ignored and notification text is displayed in one line, wraped at notofication window end.
ScripSetText = ScripSetText .. " " .. CivName1 .. "<-->" .. CivName2 .. "=" .. ProximityToPlayer .. "\n";
ScripSetText = ScripSetText .. " " .. CivName3 .. "<-->" .. CivName4 .. "=" .. ProximityToPlayer2 .. "\n";
player:AddNotification(NotificationTypes.NOTIFICATION_DIPLOMACY_DECLARATION, ScripSetText , "Map setup description...", 1, 1);
the result is that "\n" is ignored and notification text is displayed in one line, wraped at notofication window end.