Jump to content

Recommended Posts

I am following a tutorial to help me with my first terrain.

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

 

I wanted to test the terrain in the Eden editor, but my terrain did not show up on the list. I used pboProject to binarize it, then I mounted the pbo to Arma. 

This is my config.cpp: 

class CfgPatches
{
    class swp_Ukanta_terrain
    {
        units[] =
        {
            "swp_Ukanta_terrain"
        };
        weapons[] = {};
        requiredVersion = 1;
        requiredAddons[] =
        {
            "A3_Map_Stratis"
        };
    };
};
 
class CfgWorldList
{
    class swp_Ukanta_terrain{};
};
 
class CfgWorlds
{
    class Stratis;
    class swp_Ukanta_terrain: Stratis
    {
        cutscenes[] = {};
        description = "My First Terrain";
    worldName = "\swp\swp_Ukanta_terrain\swp_Ukanta_terrain.wrp";
        author = "Swedish Pyromaniac";
        icon = "";
        previewVideo = "";
        pictureMap = "";
        pictureShot = "";
 
        newRoadsShape = "";
 
        centerPosition[] =
        {
            2560, 2560
        };
        ilsDirection[] =
        {
            0, 0.08, 1
        };
        ilsPosition[] =
        {
            0, 0
        };
        ilsTaxiIn[] = {};
        ilsTaxiOff[] = {};
        drawTaxiway = false;
        class SecondaryAirports{};
        class ReplaceObjects{};
 
        class Sounds
        {
            sounds[] = {};
        };
 
        class Animation
        {
            vehicles[] = {};
        };
 
        class Subdivision{};
        class Names{};
    };
};

 

If you need me to show any other files from this map, please ask.

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

×