Problem with new walls in wolf3d

Post a reply

Smilies
:D :) :( :o :shock: :? 8) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen: :angel: :angry: :beer: :bfg: :chaingun: :cheers: :blergh:
View more smilies

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1.5 MiB.

Expand view Topic review: Problem with new walls in wolf3d

Re: Problem with new walls in wolf3d

by Blzut3 » Fri Nov 01, 2019 0:08

Spear of Destiny uses a different map translator. You could add the following to a mapinfo script.

Code: Select all

gameinfo
{
    translator = "xlat/spear.txt"
}
You can also specify the translator per map definition. (Same keyword.)

This will change a few things:

Code: Select all

things
{
        // oldnum, class, angles, patrol, minskill
        {33,  Skewer,          0, 0, 0}
        {38,  CageWithGore,    0, 0, 0}
        {45,  CageWithSkulls,  0, 0, 0}
        {63,  RedCeilingLight, 0, 0, 0}
        {67,  CowCarcass,      0, 0, 0}
        {68,  WellWithBlood,   0, 0, 0}
        {69,  SatanStatue,     0, 0, 0}
        {71,  BrownColumn,     0, 0, 0}
        {72,  ClipBox,         0, 0, 0}
}
So you'll not be able to use both the Spear textures and the Wolf3D things normally occupied by those numbers without writing a custom translator.

Out of curiosity, why not just start with Spear as the base game?

Problem with new walls in wolf3d

by Serd » Thu Oct 31, 2019 20:48

Hello. I added all the walls from Spear of destiny (those "Extra walls" which have beem added oryginally by ID only in SOD) to my Wolfenstein 3d. When I run my editor (Chaos edit, Havoc) i can see the new walls in ditor's TEXTURES section, but when i start ECWOLF (Ecwolf 1.3.3) i can't see new walls. :( Why? I come from Poland, Europe, so i'm sorry for my english, which isn't the best ...

Top