Jump to content

pp lol

Member
  • Content Count

    1
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About pp lol

  • Rank
    Newbie
  1. During the process of making a layers.cfg file, I stumbled across this strange error. At first, I thought it was just the computer having a hard time finding the P: drive, so I unmounted it and remounted it. That didn't work so I restarted my computer and tried mounting it again. It still didn't work so I decided to comb the code and see if there were any errors. Still nothing. At this point, I was getting frustrated, so I took to the internet to try and find out if anyone else had these problems. And they did, and in almost every case it was some kind of typo or hidden characters. But despite rewriting the code three times and making a completely different file, it still returned the same exact error. Is anyone able to help? tl;dr there was a p drive error that I can't seem to resolve. class Layers { class gdt_rock { texture = ""; material = "a3\map_data\gdt_rock.rvmat"; }; class gdt_strbeach { texture = ""; material = "a3\map_data\gdt_strbeach.rvmat"; }; class gdt_strconcrete { texture = ""; material = "a3\map_data\gdt_strconcrete.rvmat"; }; class gdt_strdirt { texture = ""; material = "a3\map_data\gdt_strdirt.rvmat"; }; class gdt_dry_grass { texture = ""; material = "a3\map_data\gdt_dry_grass.rvmat"; }; class gdt_wild_grass { texture = ""; material = "a3\map_data\gdt_wild_grass.rvmat"; }; class gdt_strforest_pine { texture = ""; material = "a3\map_data\gdt_strforest_pine.rvmat"; }; }; class Legend { legend = "maplegend.png"; class Colors { gdt_rock[] = {{ 0, 0, 255 }}; gdt_strbeach[] = {{ 0, 0, 255 }}; gdt_strconcrete[] = {{ 0, 0, 255 }}; gdt_strdirt[] = {{ 0, 0, 255 }}; gdt_dry_grass[] = {{ 0, 0, 255 }}; gdt_wild_grass[] = {{ 0, 0, 255 }}; gdt_strforest_pine[] = {{ 0, 0, 255 }}; }; }; If anyone can see any errors with the code or spot some typos I might have missed, your help will be greatly appreciated.
×