Jump to content

ViciousCircularity

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Everything posted by ViciousCircularity

  1. ViciousCircularity

    Generating layer problem... can someone please help

    Yes, the image I posted 2 posts back shows my data directory with the rvmats etc.
  2. ViciousCircularity

    Generating layer problem... can someone please help

    Thanks, I changed the code to this and i'm still getting same error. class Layers { class gdt_strbeach { texture = "newmap\newmap\data\gdt_strbeach_co.paa"; material = "newmap\newmap\data\gdt_strbeach.rvmat"; }; class gdt_strgreengrass { texture = "newmap\newmap\data\gdt_strgreengrass_co.paa"; material = "newmap\newmap\data\gdt_strgreengrass.rvmat"; }; class gdt_stony { texture = "newmap\newmap\data\gdt_stony_co.paa"; material = "newmap\newmap\data\gdt_stony.rvmat"; }; class gdt_strconcrete { texture = "newmap\newmap\data\gdt_strconcrete_co.paa"; material = "newmap\newmap\data\gdt_strconcrete.rvmat"; }; }; class Legend { picture = "newmap\newmap\source\maplegend.png"; class Colors { gdt_strbeach [] = {{230, 230, 120}}; gdt_strgreengrass [] = {{50, 160, 50}}; gdt_stony [] = {{0, 100, 250}}; gdt_strconcrete [] = {{170, 70, 170}}; }; };
  3. ViciousCircularity

    Generating layer problem... can someone please help

    Call me stupid but I have exactly the same problem and I don't know why.. This is my layers.cfg class Layers { class gdt_strbeach { texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt); material = "newmap\newmap\data\gdt_strbeach.rvmat"; }; class gdt_strgreengrass { texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt); material = "newmap\newmap\data\gdt_strgreengrass.rvmat"; }; class gdt_stony { texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt); material = "newmap\newmap\data\gdt_stony.rvmat"; }; class gdt_strconcrete { texture = #(rgb,1,1,1)color(0.5,0.5,0.5,1,cdt); material = "newmap\newmap\data\gdt_strconcrete.rvmat"; }; }; class Legend { picture = "newmap\newmap\source\maplegend.png"; class Colors { gdt_strbeach [] = {{230, 230} 120}; gdt_strgreengrass [] = {{50, 160, 50}}; gdt_stony [] = {{0, 100, 250}}; gdt_strconcrete [] = {{170, 70, 170}}; }; }; Any help is much appreciated! Thanks guys.
×