Page 1 of 1

Spell rune suggestions

Posted: Mon Aug 07, 2006 1:09 pm
by George Gilbert
Cut from this thread http://www.dungeon-master.com/forum/vie ... 9358bf77af -b.

Of course, in custom dungeons, the shape of the runes can also be completely different :wink:

Posted: Mon Aug 07, 2006 1:52 pm
by ian_scho
You always complicate (customise) things, George...
We like it!

Posted: Mon Aug 07, 2006 2:02 pm
by Daecon
George Gilbert wrote:Of course, in custom dungeons, the shape of the runes can also be completely different :wink:
Can that also be changed to have *more* than six runes per spell part, or even a fifth class of rune?

Or is that pretty much hard-coded into the game system (for lack of a better descriptive)?

Posted: Mon Aug 07, 2006 3:50 pm
by George Gilbert
Right now, yes it is hard coded (not by the engine per se though, but by the need to specify the font for them using the lowercase letters a-z, so there's a total limit of 26!).

Posted: Mon Aug 07, 2006 4:08 pm
by Adamo
could you increase that limit using the 0-9 numbers (is that possible)?

Code: Select all

CLASS 1   ABCDEF
CLASS 2   GHIJKL
CLASS 3   MNOPQR
CLASS 4   STUVWX
CLASS 5   YZ1234
CLASS 6   567890
?

Posted: Mon Aug 07, 2006 5:30 pm
by George Gilbert
Numbers are already used for, erm, numbers. :wink:

Posted: Tue Aug 08, 2006 2:16 am
by R.K.
What about writing the rune names out in all lowercase? That'd also make it easier to remember what to write in scrolls.

Posted: Tue Aug 08, 2006 9:07 am
by Tonari
The notation of rune is thought in the DM player in Japan too.
but it is difficult to express everything.

<< □ = ◇ )- ⊿
田 二 :: И % 品
又 δ 司 ε こ Z
メ ψ λ' 士 米 廿

There might be a character not displayed according to the environment.

Posted: Tue Aug 08, 2006 11:00 am
by George Gilbert
R.K. wrote:What about writing the rune names out in all lowercase? That'd also make it easier to remember what to write in scrolls.
Yes, there are numerous ways of doing it in a similar style to this (e.g. by putting "ful" or "%FUL%" or "%RUNE:10%" or ...) and if I was starting again, I would do something along those lines.

However, changing at this point would present a backwards-compatibility nightmare! Hindsight's a wonderful thing :wink:

Posted: Tue Aug 08, 2006 4:06 pm
by R.K.
Would it necessarily make backwards compatibility difficult? It seems like it would be enough for the game to compile spelled out rune names to particular internal values and lowercase letters from old versions into the corresponding values, and the editor to translate lowercase letters into whatever identifiers should be used in the current version.

Posted: Tue Aug 08, 2006 4:23 pm
by Daecon
Are there any characters that aren't currently recognised as doing anything by the RTC engine?

Things like punctuation marks and such, @ # ~ and so on...?

Of course it all depends on if the idea of additional runes would be somehow detracting from what Dungeon Master is.

Posted: Tue Aug 08, 2006 5:55 pm
by Sophia
Exactly, I don't understand why this is really a backward compatibility problem, if lowercase letters are still assumed to be off-limits.

a = %RUNE:0%
...
z = %RUNE:25%

and if you want more than %RUNE:26% use the new system. :)

Posted: Tue Aug 08, 2006 6:00 pm
by George Gilbert
I was thinking more of what would happen if lower case letters (no longer being needed for specifying runes) were to be allowed in "plain text".

Then how would you tell as to what an 'a' meant - 'a' or '<<'

If lowercase are off-limits then you're right that it's not a problem.

Posted: Tue Aug 08, 2006 6:08 pm
by beowuuf
Ah, future backwards compatibility not current backwards compatibility.... that's forwards looking!

Posted: Tue Aug 08, 2006 6:33 pm
by Sophia
George Gilbert wrote:I was thinking more of what would happen if lower case letters (no longer being needed for specifying runes) were to be allowed in "plain text".
Oh, true enough, but one way that gives designers more choice, and makes it easy, would be:

Have a flag, that, if set, makes lower case letters able to be rendered as letters. If it is not set, make lower case letters equal to runes. Obviously, if the flag is not present, it won't be set, so old dungeons will behave as intended, as well. :)