Jump to content
Sign in to follow this  
SparkZ

Zeus mod problem

Recommended Posts

https://www.youtube.com/watch?v=SufoXPZMR8o

(I created a mod by this tutorial, and it worked well, but he seems to be inactive on both youtube and this forum. The thing is, I need another section like "lead" or "stealth". I only had "Custom", which I now changed to "Unassigned" cause I want to give all songs their own section. And as explained in my youtube comment down here. Adding another class does not seem to work. A pastebin of my whole code is added too, so you can take a look and see what's wrong.)

 

YOUTUBE COMMENT

Hi! It's working great, but now I have SO many songs added, that I need another section cause it's just too much for one. But how do I do that? I have added another class named ECHO_1 as you see here http://pastebin.com/xdemTGPu Can you go through it and see what's wrong? When starting Arma 3 with the mod it says an error "file addons\config.ccp, line 582: .CfgMusicClasses: member already defined" It's the "ECHO_1" line defining a new section. What's wrong?

 

Thanks in advance!

~ xSparkZx

Share this post


Link to post
Share on other sites

Bump. Anyone? :(

Don't bump threads, its counted as spam on these forums. I moved your thread to the Zeus section of the forums for better visibility. 

  • Like 1

Share this post


Link to post
Share on other sites

Opening a class twice in a cpp file isn't possible so far I know. Put echo and echo_1 both in the same class.

 

line 24:

class CfgMusicClasses

{
    class ECHO
    {
        displayName = "Unassigned";
    };

    class ECHO_1
    {
        //code
    };
};

Same with CfgMusic... also, there is a bracket missing at the end of the script.

 

I hope that works for you.

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  

×