Jump to content
Sign in to follow this  
mature-rx8

Campaign for Steam upload

Recommended Posts

Hi guys,

 

I am trying to get a campaign as a pbo working for steam to upload.

I was downloading a few examples also that BI Sample but nothing is going to work. I need definitly need your help guys.

I am familiar with all arma/ofp stuff since the beginning but this is giving me a headache since days already.

 

 

If i launch the game and select campaigns:

It always tells me "no entry \CON15CORE\Campaign\description.ext.Campaign"

 

What the hell am I doing wrong here?

 

description.ext:

 

Quote

class Campaign
{
    name = "CONSP1RACIE5";
    firstBattle = Missions;
    disableMP = 0;
    //enableHub = 1;

    briefingName = "CONSP1RACIE5";
    author = "MaturE - BPOF";
    overviewPicture = "";
    overviewText = "CONSP1RACIE5 CORE 1.0";

    class MissionDefault
    {
        lives = -1;

        lost = ;
        end1 = ;
        end2 = ;
        end3 = ;
        end4 = ;
        end5 = ;
        end6 = ;
    };

    class Missions
    {
        name = "CONSP1RACIE5";
        cutscene = ;
        firstMission = Intro;
        end1 = ;
        end2 = ;
        end3 = ;
        end4 = ;
        end5 = ;
        end6 = ;
        lost = ;

        class Intro: MissionDefault
        {
            end1 = Intro2;
            lost = Intro;
            template = CON15-Intro.bra_minihattan;
        };    
        
        class Intro2: MissionDefault
        {
            end1 = M01;
            lost = Intro2;
            template = CON15-Intro2.NewYork_Lumnuon;
        };    
        class M01: MissionDefault
        {
            end1 = M02;
            lost = M01;
            template = CON15-Chapter010.bra_minihattan;
        };
        class M02: MissionDefault
        {
            end1 = M03;
            lost = M02;
            template = CON15-Chapter021.bra_minihattan;
        };
        class M03: MissionDefault
        {
            end1 = M04;
            lost = M03;
            template = CON15-Chapter022.bra_minihattan;
        };
        class M04: MissionDefault
        {
            end1 = CUT01;
            lost = M04;
            template = CON15-Chapter030.bra_minihattan;
        };
        class CUT01: MissionDefault
        {
            end1 = M05;
            lost = CUT01;
            template = CON15-Chapter030to040Cut.bra_minihattan;
        };
        class M05: MissionDefault
        {
            end1 = CUT02;
            lost = M05;
            template = CON15-Chapter040.bra_minihattan;
        };
        class CUT02: MissionDefault
        {
            end1 = M06;
            lost = CUT02;
            template = CON15-Chapter040to050Cut.bra_minihattan;
        };
        class M06: MissionDefault
        {
            end1 = CUT03;
            lost = M06;
            template = CON15-Chapter050.bra_minihattan;
        };
        class CUT03: MissionDefault
        {
            end1 = M07;
            lost = CUT03;
            template = CON15-Chapter050to060Cut.bra_minihattan;
        };
        class M07: MissionDefault
        {
            end1 = M08;
            lost = M07;
            template = CON15-Chapter060.NewYork_Lumnuon;
        };
        class M08: MissionDefault
        {
            end1 = CUT04;
            lost = M08;
            template = CON15-Chapter070.NewYork_Lumnuon;
        };
        class CUT04: MissionDefault
        {
            end1 = M09;
            lost = CUT04;
            template = CON15-Chapter070to080Cut.NewYork_Lumnuon;
        };
        class M09: MissionDefault
        {
            end1 = M10;
            lost = M09;
            template = CON15-Chapter080.NewYork_Lumnuon;
        };
        class M10: MissionDefault
        {
            end1 = OUTRO;
            lost = M10;
            template = CON15-Chapter090.NewYork_Lumnuon;
        };
        class OUTRO: MissionDefault
        {
            end1 = ;
            lost = OUTRO;
            template = CON15-Outro.NewYork_Lumnuon;
        };
    };
};

 

and the config.cpp:

 

Quote

class CfgPatches  {
    class CON15CORE  {
        author = "MaturE";
        authors[] = {"Black Panthers on Fight"};
        url = "http://bpof.eu/CONSP1RACIE5/CONSP1RACIE5-CORE/";
        units[] = {};
        weapons[] = {};
        requiredVersion = 1.7;
        requiredAddons[] = {};
    };
};

class CfgMissions
{
    class Campaigns
    {
        class CON15CORE
        {
            directory = "CON15CORE\Campaign";

            #include "Campaign/description.ext"
        };
    };
};

 

Thx in advance, I already tried everything on google, the forums ect...

 

 

Regards

MaturE

 

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  

×