Projects that alter game functions but do not include new maps belong here.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.
ok reworked edish 1.8 again!
this time has better spark/bulletpuffs and I have re-done how the unmaker works... see below if you like ruined secrets!
Spoiler:
the standard unmaker is now the simple laser it was in d64 with the added bonus that, although the lasers are weak, they rip through enemies. this weapon pickup is weaponslot six (with the plasmagun) and can be found randomly at plasmagun or bfg9000 spawnpoints. now heres the interesting part!
the unmaker can be upgraded to the railgun-style version by finding a new inventory item called the demonrune. (also randomised with the bfg spawnpoints)
its a red version of one of the demonkeys from d64 and goes in your inventory when picked up.
the demonrune can be activated only if you have already a laser-unmaker in your weapons inventory, otherwise it will display the message: "this seems to fit something you don't yet possess..." and then remain to be used later.
however if you do have a laser-unmaker the rune will give you the rail-unmaker (weaponslot 7 with your bfg) which features a glowy pentagram to signify the difference with the laser-unmaker.
dont fret if you want the laser though as you can still use the laser-unmaker after successfully using the demonrune as it remains on weaponslot 6!
should you find another demonrune, using it will instead give you an ammoboost (providing your ammo is lower than max otherwise it will simply display the message: "The unmaker throbs with arcane power!")
on e4m7 when i go outside through the red key-door the game freezes after a while.
normally after something gets shot or something.
I have a feeling this is to do with the flies around the corpses but I'm not sure how. as far as I know its the only map that does it... anyone got any ideas how?
here is the code for the flies:
Spoiler:
ACTOR SwarmFly
{
Radius 1
Height 1
Speed 5
scale 0.5
PROJECTILE
+NOCLIP
+DONTSPLASH
ReactionTime 4
States
{
Spawn:
Spawn:
SFLY A 1 ThrustThingZ(0, random (-1, 1), random (1, 0), 1) TNT1 A 0 A_ChangeVelocity(frandom(-2,2),frandom(-1,1),frandom(-2,2),1)
SFLY B 1 ThrustThingZ(0, random (-1, 1), random (1, 0), 1) TNT1 A 0 A_ChangeVelocity(frandom(-1,1),frandom(-2,2),frandom(-1,1),1)
SFLY A 0 A_CountDown
SFLY C 1 ThrustThingZ(0, random (-1, 1), random (1, 0), 1) TNT1 A 0 A_ChangeVelocity(frandom(-2,2),frandom(-1,1),frandom(-2,2),1)
SFLY B 1 ThrustThingZ(0, random (-1, 1), random (1, 0), 1) TNT1 A 0 A_ChangeVelocity(frandom(-1,1),frandom(-2,2),frandom(-1,1),1)
SFLY A 0 A_CountDown
Loop
Death:
SFLY A 1 A_CustomMissile("SwarmFly",0,0,frandom(-20,20))
Stop
}
}
and here is an example of one of the dead body spawners:
Spoiler:
Actor Body_Swarm
{
+Missile
+NoBlockmap
+NoGravity
+NoSector
+Clientsideonly
Radius 1
Height 64
States
{
Spawn:
TNT1 A 0
TNT1 A 0 A_Jump(256,"Playercorpse1","Playercorpse2","Playercorpse3","Playercorpse4")
Loop
Playercorpse1:
TNT1 A 0 A_SpawnItemEX("DeadMarine1")
Goto MakeSwarm
Playercorpse2:
TNT1 A 0 A_SpawnItemEX("DeadMarine2")
Goto MakeSwarm
Playercorpse3:
TNT1 A 0 A_SpawnItemEX("DeadMarine3")
Goto MakeSwarm
Playercorpse4:
TNT1 A 0 A_SpawnItemEX("DeadMarine4")
Goto MakeSwarm
MakeSwarm:
TNT1 A 0 A_PlaySoundEX("SFX/Buzz","Body",1)
TNT1 AAAAA 1 A_SpawnItemEx ("SwarmFly",frandom(-16,16),frandom(-16,16),frandom(-16,16))
TNT1 A -1
Stop
}
}
actor DEADspawner : RandomSpawner replaces DeadMarine
{
dropitem body_swarm
}
actor DeadMarine1
{
mass 999999999
health 20
+SHOOTABLE
states
{
Spawn:
PLAY N -1
stop
Death:
PLAY N 0 A_SpawnItem("NashGore_Crushedsmall",0,0,0,0)
PLAY N 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
PLAY N 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
stop
}
}
actor DeadMarine2
{
mass 999999999
health 20
+SHOOTABLE
states
{
Spawn:
GEEZ A -1
stop
Death:
GEEZ A 0 A_SpawnItem("NashGore_Crushedsmall",0,0,0,0)
GEEZ A 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
GEEZ A 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
stop
}
}
actor DeadMarine3
{
mass 999999999
health 20
+SHOOTABLE
states
{
Spawn:
GEEZ I -1
stop
Death:
GEEZ I 0 A_SpawnItem("NashGore_Crushedsmall",0,0,0,0)
GEEZ I 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
GEEZ I 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
stop
}
}
actor DeadMarine4
{
mass 999999999
health 20
+SHOOTABLE
states
{
Spawn:
GEEZ P -1
stop
Death:
GEEZ P 0 A_SpawnItem("NashGore_Crushedsmall",0,0,0,0)
GEEZ P 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
GEEZ P 0 A_SpawnItem("NashGore_GibGenerator",0,0,0,0)
stop
}
}
i thought it might be one of the flags possibly the +nosector or +clientsideonly causing grief? but removing them made no difference.
are there simply too many actors at once (what with all the bodies/swarms in that map/room)?
I have a feeling its one of the flies clipping through a part of the map messing something up but I'm buggered if I can say where why or what?
really stuck and don't really understand mapping so any ideas would be greatly appreciated
thanks
latchford
Fun mod. One question, why do wasted your time with the ejecting shell casings? It looks like they are coming from somewhere behind the player. I want to see them fly from the weapons.
EDIT: I had no problem with E4M7. No Crash. (GZDoom r1548)
oh, well that's great news! I'm running plain old zdoom but perhaps I should download the latest edish and try and see if that solves the issue! my version is probably quite antiquated by now! LOL didn't think it was that old though... would love to hear how others have got on...
oh, and you know what, you're right about the casings, they should be re-positioned i'll endeavor to do that for the next release...
Looks like no one noticed the new version. The last post in this thread was from April.
Could you upload the new version to another hoster? I do not want to create a account on 4shared to download your mod.
Congrats dude, this was one of the best mods I've ever played, and if I stop to think, it's hard to think of a better one. Most mods just focusing on just one thing, like good sprites, good gameplay, I mean fluid. Brutal Doom have these requirements, but also has a strong difference in gameplay, but this one have all without losing the essence of Doom. I just do not understand why not have a reload key, this kill the gameplay a little. Also, all these files could not be put in just wad/pk3?
ArielBoss wrote: Also, all these files could not be put in just wad/pk3?
/opens zip
... I concur! 0_o
Haha, my doom folder is already a barely-organized mess with all the mods/wads/pk3's, so to have it neatly contained in one would be appreciated.
Otherwise the screenshots look really good. I'll probably end up stealing that awesome helmet hud and Doom64 shotgun for my Brutal Doom. Always loved the look of that one. (Hope there's reload frames out there. And iron sights...)
Oh and for anyone using 4share, you can use bugmenot.com to get an account without having to make one.
You could try Dropbox or something in the mean time, it may be easier. I think there are generic public account logins floating around for 4shared, but I haven't been able to find the list.
ArielBoss wrote:Congrats dude, this was one of the best mods I've ever played, and if I stop to think, it's hard to think of a better one. Most mods just focusing on just one thing, like good sprites, good gameplay, I mean fluid. Brutal Doom have these requirements, but also has a strong difference in gameplay, but this one have all without losing the essence of Doom. I just do not understand why not have a reload key, this kill the gameplay a little. Also, all these files could not be put in just wad/pk3?
many thanks! reload key was something I actually felt ruined gameplay. it left you doing a counterstrike and pushing r every two seconds.
having been in actual firefights I can assure you that you generally don't do this like that! LOL if you did you'd have about 56 mags with like ten or twelve rounds in and a very confused quartermaster when signing back in...
but many thanks for the kind words! this was my self-made brief when designing and doing this: add all the cool shit from the games you love, but don't take the doominess away... thats basically it. the intention is also to make something that will run with ANY standard wad and not wreck gameplay. this took hours of alpha-testing (to my wife's joy ) to make sure the weapons and powerups balanced. oh, on that note, I seriously recommend playing this with darkening2.wad its just great!
I have, over time, added many new things then ditched them further down the line.
monsters for instance.
but in the end I felt that new critters wreck it. as such I've stuck to just the former marines (clydes), scientists (thanks scallino!) and the dog (because I loved it in quake!). the others got removed from the randomisers as it felt odd facing something that you don't know.
to be honest this came after only just playing kdizd and I was wowed by the supreme level design but was actually disappointed by all the new monsters. I felt they just ruined the atmosphere and made it feel like just any other mod! crying shame that...
instead, in my mod, I focused on adding new animations to existing enemies, this way you get something new but it doesn't feel jarring...
as for the jumbled mess of wads/pk3. as mentioned in the readme, its the only way I could get it to work. and its a hell of a lot more easy for me to mod it further and add new shit down the line... as such this is how it will be staying...
now guys, serious stuff now. where the hell can I safely and conveniently sign up to and upload this so you all can get at it?