Page MenuHomeFeedback Tracker

Text chat disappearing upon entering Splendid Camera
Reviewed, NormalPublic

Description

Text chat (player text messages, system messages, et cetera) will be hidden for the client upon entering the Splendid Camera. Exiting the camera does not resolve the issue; aborting to the lobby and rejoining the mission will restore text chat. 

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 7 x64
Category
Visual-GUI
Steps To Reproduce
  1. Start up and join a dedicated server. The mission should have enableDebugConsole set as 1 or 2.
  2. If 1 then login as the admin with #login <passwordAdmin>
  3. When in-game type something in chat then hit escape (esc) and enter the Splendid Camera. 
  4. Notice that text chat is no longer visible in-game to your client. Text chat will still be visible to other clients, and will appear in the server and RCon logs. 
  5. Abort to lobby and rejoin. 
  6. Text chat should be visible again. 
Additional Information

Launcher version: 1.5.138522

Game version: 1.64.138497 (22-09-2016)

Branch: main / beta branch not specified


Initially reported on the forums at Text chat disappearing upon entering Splendid Camera.

Event Timeline

Jawsh created this task.Sep 27 2016, 12:18 PM
Jawsh edited Steps To Reproduce. (Show Details)
aaco added a subscriber: aaco.Oct 25 2016, 6:10 AM

This appears to be a strange issue with where the camera display is actually being created. The camera display is normally created on the RscDisplayMission display, which causes issues when you quit out of it (i.e. no text showing up). If the camera display is created on RscDisplayMPInterrupt the text comes back as it is supposed to. A quick fix to just get rid of the symptoms is to call showChat = true; on the Exit mode of the a3\functions_f\Debug\fn_camera.sqf script. In the mean time players can fix the symptoms by locally executing showChat = true; in the debug console, or if they have CBA by adding

class Extended_DisplayUnload_EventHandlers {
    class RscDisplayCamera {
        potato = "showChat true";
    };
};

to their mission's description.ext or a mod's config.cpp.

razazel claimed this task.Oct 26 2016, 11:42 AM
razazel changed the task status from New to Reviewed.
Jawsh added a comment.Nov 19 2016, 6:11 AM

This issue persists in version 1.66.139279 RC1 (11-11-2016).