Author Topic: A Syntax Error in my Map?  (Read 1337 times)

I have been making my first map. So, when I try to load it to use, It's stuck on Waiting for Server... So, here's the syntax code I get from console.

Code: [Select]
Executing Add-Ons/Map_Shapeland/Shapeland.mis.
Add-Ons/Map_Shapeland/Shapeland.mis Line: 159 - Syntax error.
>>> Some error context, with ## on sides of error halt:
      shapeName = "./pyramid.dts";

   };

   new TSStatic() {

      position = "407.884 311.338 99.6";

      rotation = "1 0 0 0";

      scale = "3 3 3";

      shapeName = "./LargeCube.dts";

   };

   new MessageVector() {

   };

   new FileObject(-1.###I##ND) {

   };

   new FileObject(-1.#IND) {

   };

   new FileObject(-1.#IND) {

   };

   new FileObject(-1.#IND) {

   };

   new FileObject(-1.#IND) {

   };

   new FileObject(-1.#IND) {

   };

   new FileObject(-1.#IND) {

   };

   new FileObject(-1.#IND) {
>>> Error report complete.
Oh, and I also get these.
Code: [Select]
No 'MissionGroup' found in mission "".
Code: [Select]
base/server/mainServer.cs (405): Unable to find object: 'mainBrickGroup' attempting to call function 'add'
BackTrace: ->servAuthTCPobj::onLine->GameConnection::startLoad
Do these have to do with my map?
« Last Edit: January 18, 2011, 11:39:43 AM by Uxie »

Go into you mission file (open it up with notepad). Delete all of the new File Objects (-1.#IND) {

These are pointless and mess up maps, happens to me randomly all the time :\ I think it has something to do with saving the mission while there are bricks on the map.

As for the (No 'Mission Group' found in mission "".) this is very strange, as your map should have a mission group unless you deleted it.

Go into you mission file (open it up with notepad). Delete all of the new File Objects (-1.#IND) {

These are pointless and mess up maps, happens to me randomly all the time :\ I think it has something to do with saving the mission while there are bricks on the map.

As for the (No 'Mission Group' found in mission "".) this is very strange, as your map should have a mission group unless you deleted it.
That was exactly my problem. It works now. Thanks.