Updating/fixing my mods for v1.3.3+?

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: Updating/fixing my mods for v1.3.3+?

Re: Updating/fixing my mods for v1.3.3+?

by Banjo » Wed Apr 26, 2017 7:55

Thanks, mate! That makes much more sense! I "fixed" the mod to run with 1.3.3 but kept my previous version, and it was a good learning experience to see the difference. Cheers! Back to playing (and modding!).

Re: Updating/fixing my mods for v1.3.3+?

by Blzut3 » Wed Apr 26, 2017 1:08

1.3.99999 aka 1.4.0 development is later than 1.3.3 so this should be expected. The map translator issue you're seeing is because you're writing a 1.4 style mod which uses thing names instead of the editor numbers (editor numbers will be deprecated in 1.4). I would probably suggest that you continue to use the development versions.

Updating/fixing my mods for v1.3.3+?

by Banjo » Tue Apr 25, 2017 20:11

I've been away from ECWolf for a good few months, and only had chance to return to it today. I noticed that after updating to the latest stable 1.3.3 build (I was previously using dev build 1.3999 r161001-1930) that my own mod I was working on no longer works. Instead, it just crashes as the game loads up.

Obviously, I need to fix or update something that has been changed/updated in the newer builds of ECWolf... but how do I find out what I need to fix?

EDIT: Fixed the first errors; the cause was that the "Mac version" items no longer seem to be included in ecwolf.pk3 ("macintosh.txt" is entirely gone from the actors folder there) so my mod referencing things like "MacGasTank" was crashing. I fixed it by re-adding "macintosh.txt" to my mod from the older ECWolf pk3 file (and changing a line that is now included in the N3D definitions instead, as far as I can tell). Now my mod loads up!

Second issue now, when I try to start Spear of Destiny... I get a crash with the error: "Expected Integer Constant but got Identifier instead"
The line it points to in my mod is a "things" section, and reads:

Code: Select all

{63,  RedCeilingLight, 0, 0, 0}
Has something changed in the code that I need to thus change my mod to reflect (i.e. replace "RedCeilingLight" with the 'integer' that seems to be expected in its place?) I noticed that the "class" column header there has changed to "newnum". I'm guessing I need to change the strings to the numbers associated with each "thing", found in their actor definition file?

Forgive me, I'm a bit rusty returning to this again!

Top