SageNTitled 25 Posted June 21, 2017 How would I go about replacing the splash screen with a custom one? The one that shows when the game starts (with the Arma 3 logo). I'm unable to find the proper config. Is it composed of several elements or is it just one image? Share this post Link to post Share on other sites
bhcluster 15 Posted June 26, 2017 If its for your mission have a look at this: Description.ext author = "John Doe"; // Author onLoadName = "Epic Invasion"; // Mission name (temporary solution; actual name set in editor will be used later in the alpha) onLoadMission = "Fate of the world is in your hands. Good luck and Godspeed."; // Description loadScreen = "loadScreen_ca.paa"; // Preview picture class Header { gameType = Coop; // MP mission type }; Or if it is for your map then this: Config.cpp class CfgWorlds { class Stratis: CAWorld { author = "Bohemia Interactive"; // Author description = "Stratis"; // World name pictureMap = "A3\map_Stratis\data\pictureMap_ca.paa"; // Background map pictureShot = "A3\map_Stratis\data\ui_Stratis_ca.paa"; // Default overview picture // Loading texts displayed on the bottom of the loading screen (picked randomly) loadingTexts[]= { "Area of Stratis is 19.3 square kilometers.", "Stratis is of volcanic origin, with many rocks and crevices.", "Kamino Firing Range uses remnants of the nearby old Kamino village as a target area." }; }; }; https://community.bistudio.com/wiki/Loading_Screens Share this post Link to post Share on other sites
SageNTitled 25 Posted July 5, 2017 None of those I'm afraid. This is the screen I want to replace: Share this post Link to post Share on other sites