Jump to content
Sign in to follow this  
rotceh_dnih

Custom main menu level cutscene

Recommended Posts

Hey guys i wanted to change the main menu scene for stratis just to start with i thought i would change the Altitude set in initIntro.sqf however i feel my config is incorrect

the addons name is @Menutest and the dir structure is like so

Arma 3\@Menutest\addons\custom_map_anims\scenes\intro1.Stratis\initIntro.sqf
Arma 3\@Menutest\addons\custom_map_anims\scenes\intro1.Stratis\mission.sqm
Arma 3\@Menutest\addons\custom_map_anims\$PBOPREFIX$
Arma 3\@Menutest\addons\custom_map_anims\config.cpp

my config file is like this

http://pastebin.com/rRJjLWf2 sorry had to pastebin that it was to large

and my $PBOPREFIX$ is

z\addons\custom_map_anims

so i thought that would work but it dose not however the loadingTexts[] do work so it is overriding something just not the scene

any help would be great

thanks

hector.

Share this post


Link to post
Share on other sites

I just downloaded afew custom arma 3 maps and they dont have cutscenes in them so i tried adding one in but it didnt work

are there any custom map for arma 3 that have a custom menu cutscene?

Or any mods?

i heard ace did it for arma 2 so i had a look and thought i copyed what they had done but it didnt seem to work ether.

Share this post


Link to post
Share on other sites

the addons name is @Menutest and the dir structure is like so

Sounds a bit confusing, your addon name would be custom_map_anims.pbo and @Menutest is just your modfoldier.....

If you only want to change that single Intro you can just change the path to your new intro file:

Simple example Addon: "TUT_MyCustomAnims.pbo"

class CfgPatches
{
class TUT_MyCustomAnims
{
	units[] = {};
	weapons[] = {};
	requiredVersion = 0.1;
	requiredAddons[] = {"A3_Map_Stratis"};
};
};
class CfgMissions
{
class Cutscenes
{
	class Stratis_intro1  //magic happens here
	{
		directory = "TUT\TUT_MyCustomAnims\scenes\mynewintro.Stratis";
	};
};
};

And in this case the prefix is

tut\tut_mycustomanims

Edited by Atsche
  • Like 1

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
Sign in to follow this  

×