Jesus over 675 errors!
Moderator: George Gilbert
Forum rules
Please read the Forum rules and policies before posting.
Please read the Forum rules and policies before posting.
- MitchB1990
- Artisan
- Posts: 183
- Joined: Fri Jan 27, 2006 2:49 am
- Location: Seattle, WA
Jesus over 675 errors!
lol well I tried to load my Crystalline Caverns dungeon, which was made when v.31 of RTC came out, never released now tried to run with v.43 didn't work so well. Which really kinda sucks even though it was only a 3 lvl dungeon.
- Ameena
- Wordweaver, Murafu Maker
- Posts: 7550
- Joined: Mon Mar 24, 2003 6:25 pm
- Location: Here, where I am sitting!
- Contact:
That'll just be some kind of backwards-compatibility thing. I had a look at my dungeon (originally started back at about 0.32 or something) in the 0.43 editor and got a big long list of errors. Whenever I can be arsed to actually work on my dungeon, I'll see about sorting them out
.

______________________________________________
Ameena, self-declared Wordweaver, Beastmaker, Thoughtbringer, and great smegger of dungeon editing!
Ameena, self-declared Wordweaver, Beastmaker, Thoughtbringer, and great smegger of dungeon editing!
- George Gilbert
- Dungeon Master
- Posts: 3022
- Joined: Mon Sep 25, 2000 11:04 am
- Location: London, England
- Contact:
There are probably only a handful of "real" errors and it won't take you very long to fix them.
For example, I know there are places where a new parameter has been added so a section that used to look like
Should now look like
The compiler however will probably chuck out loads of errors for this one change. For example, as well as the "found B expecting X" that you would expect to see, the compiler will get out of sync with itself and when reading the 3rd line from the section will also generate "found C expecting B", then "found D expecting C" and so on.
As beowuuf said, if you load the dungeon into the editor, then reverify it to see how many errors there now are, I expect the number will be far fewer!
For example, I know there are places where a new parameter has been added so a section that used to look like
Code: Select all
[Section]
A=(...)
B=(...)
C=(...)
D=(...)
E=(...)
Code: Select all
[Section]
A=(...)
X=(...)
B=(...)
C=(...)
D=(...)
E=(...)
As beowuuf said, if you load the dungeon into the editor, then reverify it to see how many errors there now are, I expect the number will be far fewer!