Jump to content

Recommended Posts

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

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

None of those I'm afraid. This is the screen I want to replace:

 

2PkPTVA.png

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

×