Jump to content
frogtop

Why won't this desciption.ext work?

Recommended Posts

Hey guys, I've been learning to make dialogue for my missions and came into an error i just can't figure out. When i try to run the latest conversation script, it's saying no entry cfgSentences SquadChatter. I'll show you the description.ext I have and hopefully somebody can shed some light? I've been asking on discord for a couple days and not managed to fix the issue, i'm guessing it's something silly.

 

My description ext below...

 

class CfgSentences
{
    class ConversationsAtBase
    {
        class Briefing
        {
            file = "brief.bikb";
            #include "brief.bikb"
        };
    };
    class ConversationsAtObjective
    {
        class Complete
        {
            file = "objective1.bikb";
            #include "objective1.bikb"
        };
    };
    class ConversationsAtObjective2
    {
        class Complete2
        {
            file = "objective2.bikb";
            #include "objective2.bikb"
        };
    };
    class ConversationsAtVisualContact
    {
        class SquadChatter
        {
            file = "eyesoncamp1.bikb";
            #include "eyesoncamp1.bikb"
        };
    };
};

 

 

so the top three scripts work fine but when i go to execute the latest one i get the error mentioned at the top.

Would appreciate any knowledge because I tried to read the conversations page on the wiki and my brain melted.

 

 

Share this post


Link to post
Share on other sites

thanks for replying, that's the video i followed, ive just tried repeating the same format to add another section but I'm getting the error I'm getting.

Share this post


Link to post
Share on other sites
9 hours ago, frogtop said:

#include "objective2.bikb"

#include "eyesoncamp1.bikb"

Show the contents of these two files, please.

Share this post


Link to post
Share on other sites

Hey guys, I got the problem solved with advice from discord, in the eyesoncamp sqf which i didn't include as I didn't think was the issue, where it calls the two subjects like [SquadChatter , ConversationsAtYourMamas] i has them the wrong way round.

thank you for responding though guys. I didn't include enough information for you guys to solve the issue.

Share this post


Link to post
Share on other sites

Hi i have a question how is it currently working for you ? I have :

class CfgSentences
{
    class ConversationsAtBase
    {
        class Briefing
        {
            file = "brief.bikb";
            #include "brief.bikb"
        };
    };
    
    class ConversationsAtOutpost
    {
        class Outpost
        {
            file = "taskone.bikb";
            #include "taskone.bikb"
        };
    };
};

and run via trigger : nul = execVM "chat1.sqf"; . And I get an error that they can't find the ConversationAtBase class

Translated with DeepL.com (free version)

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

×