Also, maybe you should update the date on your download page? Heh sorry i'm a right old nagger aren't I?
New features (last update 8.8.2005)
Moderator: GZDoom Developers
- Cutmanmike
- Posts: 11354
- Joined: Mon Oct 06, 2003 3:41 pm
- Operating System Version (Optional): Windows 10
- Location: United Kingdom
- Contact:
-
Lemonzest
- Posts: 327
- Joined: Tue Oct 12, 2004 3:19 pm
- Location: On your boards, trolling your threads!!!
well with your old build with autosavecount set to about 10 it crashed when saving what i did to test was, load hexen then map map02 and then pull the leaver to open the first door and then go into the portal and it auto saves then down the staires and pull the next switch and wait for the smashers to stop, then trough the teleporter where it saves again, then i loop trough the teleporters and before when it hit the limit set in autosavecount it crahsed, now it wraps back around and overwrites the 1st save like it should.
- Cutmanmike
- Posts: 11354
- Joined: Mon Oct 06, 2003 3:41 pm
- Operating System Version (Optional): Windows 10
- Location: United Kingdom
- Contact:
- Graf Zahl
- Lead GZDoom+Raze Developer

- Posts: 49252
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
I'm looking at the code right now.
Grubber, you made one nasty mistake:
In gameconfigfile.cpp you deleted the initialization call for the weapon slots when you altered the code so that it can load the settings for Strife.
This must be re-added to the end of DoGameSetup:
Grubber, you made one nasty mistake:
In gameconfigfile.cpp you deleted the initialization call for the weapon slots when you altered the code so that it can load the settings for Strife.
This must be re-added to the end of DoGameSetup:
Code: Select all
else
{
SetupWeaponList (gamename);
}
- DoomRater
- Posts: 8270
- Joined: Wed Jul 28, 2004 8:21 am
- Preferred Pronouns: He/Him
- Location: WATR HQ
- Contact:
I don't suppose I mentioned this but this is freakin close to what I was looking for, if not exactly what I was looking for! so color1 and color2 affect the rail and the laser right? Or is that the other way around?Grubber wrote:It's A_RailAttack (damage, xyoffs, usenoammo, color1, color2, silent). Color1,2 can be defined as "RR GG BB" (hexadecimal) or any entry from X11R6RGB lump or "none" for no color (invisible). It's a little bit different than original kgsws's version.
- Graf Zahl
- Lead GZDoom+Raze Developer

- Posts: 49252
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Status update. I have added most of the stuff I wanted to and all that remains is testing it.
So what's new:
- Flats can now be in PNG format
- added a DONTHURTSPECIES flag that prevents a monster from doing explosive damage to its own kind.
- added a REMOVEDEAD flag that makes a dead monster disappear if no player is in sight
- added A_SetTranslucent(alpha, type) code pointer (which I think will make some people happy
)
- added A_FadeOut code pointer which makes an actor fade out until it is invisible and then removes it.
- added A_SpawnDebris code pointer
- added optional parameters to A_BFGSpray, A_FatAttack?, A_Mushroom and A_PainAttack. Of the available Doom code pointers these are the ones most in need of it.
- made the rocket particle trail available in DECORATE through a ROCKETTRAIL flag
- added option to make the Hexen/Heretic scrollers carry as fast as they scroll
- finally added custom translations to DECORATE.
- fixed a bug in A_CentaurDefend and made this function available in DECORATE because it can be really useful with monsters that can switch on an invulnerability mode.
- added my HUD scaling code which has been submitted elsewhere
There's still a few things to do though...
So what's new:
- Flats can now be in PNG format
- added a DONTHURTSPECIES flag that prevents a monster from doing explosive damage to its own kind.
- added a REMOVEDEAD flag that makes a dead monster disappear if no player is in sight
- added A_SetTranslucent(alpha, type) code pointer (which I think will make some people happy
- added A_FadeOut code pointer which makes an actor fade out until it is invisible and then removes it.
- added A_SpawnDebris code pointer
- added optional parameters to A_BFGSpray, A_FatAttack?, A_Mushroom and A_PainAttack. Of the available Doom code pointers these are the ones most in need of it.
- made the rocket particle trail available in DECORATE through a ROCKETTRAIL flag
- added option to make the Hexen/Heretic scrollers carry as fast as they scroll
- finally added custom translations to DECORATE.
- fixed a bug in A_CentaurDefend and made this function available in DECORATE because it can be really useful with monsters that can switch on an invulnerability mode.
- added my HUD scaling code which has been submitted elsewhere
There's still a few things to do though...
Right, stupid me...Graf Zahl wrote:Grubber, you made one nasty mistake
EDIT: I was too slow
Last edited by Grubber on Mon Jun 13, 2005 6:30 am, edited 2 times in total.
- Graf Zahl
- Lead GZDoom+Raze Developer

- Posts: 49252
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
I already fixed it. Right now I am working down my list of stuff I'd like to add.
There's a few code pointer I'd like to add in addition to some from Hexen I am going to made available
I also want to take care of the A_FastChase with friendly monsters issue. That one is highly annoying. When I'm done I'll post the .diff here.
Regarding the .diff, I think next time you should either include a full .diff to .96 or if that gets too long add the files not contained in it. Yesterday evening I spent over an hour getting all the stuff together because large parts were not in the .diff so I had to browse several threads and look through all of my different ZDoom projects.
Anyway, this 'inofficial' version is looking great. That's much closer to the ZDoom I'd like to have than 2.0.96.
There's a few code pointer I'd like to add in addition to some from Hexen I am going to made available
I also want to take care of the A_FastChase with friendly monsters issue. That one is highly annoying. When I'm done I'll post the .diff here.
Regarding the .diff, I think next time you should either include a full .diff to .96 or if that gets too long add the files not contained in it. Yesterday evening I spent over an hour getting all the stuff together because large parts were not in the .diff so I had to browse several threads and look through all of my different ZDoom projects.
Anyway, this 'inofficial' version is looking great. That's much closer to the ZDoom I'd like to have than 2.0.96.
I wanted to add it some time ago, but I don't like the way of scaling to other resolutions than 320x200. Maybe you can add some more computing with CleanXfac & CleanYfac?Graf Zahl wrote:- added my HUD scaling code which has been submitted elsewhere
I like the progress of inofficial version too
BTW full diff is already included (I'm too lazy to always delete hundreds of lines from the diff
- Cutmanmike
- Posts: 11354
- Joined: Mon Oct 06, 2003 3:41 pm
- Operating System Version (Optional): Windows 10
- Location: United Kingdom
- Contact: