Jump to content

Recommended Posts

I understand there are a lot if topics on this issue, I've read through about five and haven't found a fix. I am following the PMC tutorial and ran into this issue:

It states that it can not find maplegend in my P directory.

Quote

class Layers
{
    class tut_grass_green
    {
        texture = "";
        material = "mum\tut\data\tut_grass_green.rvmat";
    };
};
 
class Legend
{
    picture = "maplegend";
 
    class Colors
    {
        mum_grass_green[] = {{ 230, 230, 120 }};
    };
};

 I have only changed my tag and the name of my terrain for ease of use. Again, my legend is in the directory.

 

Thanks for any help.

Share this post


Link to post
Share on other sites

Helps if you tell TB its a png 😄

 

picture = "maplegend.png";

not

picture = "maplegend";

 

At least it's a easy fix!

  • Thanks 1

Share this post


Link to post
Share on other sites
2 hours ago, RoF said:

Helps if you tell TB its a png 😄

 

picture = "maplegend.png";

not

picture = "maplegend";

 

At least it's a easy fix!

Thanks, I could have sworn I tried that, but I guess not in the right way.

Share this post


Link to post
Share on other sites

I'm at a loss. I believe Mumbo Wumbo and I are using the same tutorial

https://pmc.editing.wiki/doku.php?id=arma3:terrain:ultimate-terrain-tutorial

But I am getting the same error but my script looks fine

 

class Layers
{
    class tut_grass_green
    {
        texture = "";
        material = "tut\tut_tutorial_terrain\data\tut_grass_green.rvmat";
    };
};
 
class Legend
{
    picture = "maplegend.png";
 
    class Colors
    {
        tut_grass_green[] = {{ 230, 230, 120 }};
    };
};

I am losing my mind

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

×