Author Topic: Map loading problem.  (Read 1369 times)

Ok, this is kinda simple to explain.
When I try to load my custom map I made, in the middle of Blockland loading the map, it pops up with a window that says:

Sorry for the page stretch. :c

The console stops on
Code: [Select]
*** Phase 2: Download Ghost Objects
Here is the map, if any one can fix it.
http://www.mediafire.com/download.php?ywnymmif2mw

Thank you. :D



Here's the map fixed: http://www.mediafire.com/?tnwazmlogii

This is where you forgeted things
Code: [Select]
   new InteriorInstance() {
      position = "0 0 0";
      rotation = "1 0 0 0";
      scale = "1 1 1";
      interiorFile = "~/Map_Slate/slate.dif";
      useGLLighting = "0";
      showTerrainInside = "0";
   };
That was set to
Code: [Select]
      interiorFile = "./Map_Slate/slate.dif";Which trys to load onwards from the file rather then the games base directory. For example, it was trying to load "Add-ons/Map_Slate_Green/Map_Slate/slate.dif".

You also tried to load the map without a skybox, a big nono, you always need a skybox even if you turn it off.
Code: [Select]
      materialList = "base/data/skies/Sky_Spooky1/resource.dml";
   };

I also renamed the map so it appears as Stale Green rather then Slate_Green in the map list.
« Last Edit: February 07, 2009, 11:09:43 PM by Packer »