Snarboo's Mod Journal
Moderator: wildweasel
- Marty Kirra
- Posts: 364
- Joined: Sat Jul 09, 2005 4:25
- Chronoteeth
- Posts: 824
- Joined: Wed Jul 06, 2005 10:01
- wildweasel
- DRD Team Admin (Inactive)
- Posts: 2132
- Joined: Wed Jun 29, 2005 22:00
- Location: the Admincave!
- Contact:
- Snarboo
- Posts: 469
- Joined: Thu Jul 07, 2005 2:35
- Location: space station base of the UAC
Update:
*Started work on the Pipe Bomb. It's currently a place holder until I make the projectile and the RTS script for the detonation. The pipe bombs will be able to be picked back up after being thrown, just like in Duke 3D. :)
*After much trial and error, made the Shell Boxes randomly spawn one of four items: A single pipe bomb, a box of pipe bombs, a box of shells, or a hunting shotgun. Although this isn't how the pickups for the pipe bombs worked in Duke Nukem, it was a necessary change to help balance. It also allows you to pick up a hunting shotgun in the original Doom. I plan on doing the same sort of balance changes for the box of rockets and large cell pack, which are the box of Devastator rounds and the shrinker cell, respectively.
*Added a second pickup for the Hunting Shotgun with an item number of 9000 so that you can place it in custom maps for any IWAD. The second pickup gives you 20 shells, which is twice as much as the modified super shotgun pickup gives you.
*Started work on the Pipe Bomb. It's currently a place holder until I make the projectile and the RTS script for the detonation. The pipe bombs will be able to be picked back up after being thrown, just like in Duke 3D. :)
*After much trial and error, made the Shell Boxes randomly spawn one of four items: A single pipe bomb, a box of pipe bombs, a box of shells, or a hunting shotgun. Although this isn't how the pickups for the pipe bombs worked in Duke Nukem, it was a necessary change to help balance. It also allows you to pick up a hunting shotgun in the original Doom. I plan on doing the same sort of balance changes for the box of rockets and large cell pack, which are the box of Devastator rounds and the shrinker cell, respectively.
*Added a second pickup for the Hunting Shotgun with an item number of 9000 so that you can place it in custom maps for any IWAD. The second pickup gives you 20 shells, which is twice as much as the modified super shotgun pickup gives you.
- Snarboo
- Posts: 469
- Joined: Thu Jul 07, 2005 2:35
- Location: space station base of the UAC
The pipe bombs are finished! They act just as they do in Duke Nukem, allowing you to throw them and then pick them up. However, because of this, you have to wait for the pipe bomb projectile to actually spawn the thrown pipe bomb in order to detonate it. The weapon functions like it did in Duke Nukem, too, meaning you first throw a pipe bomb, then hit the detonator.
Here are some screenshots of me playing around with Pipe Bombs in Map 01.
Here are some screenshots of me playing around with Pipe Bombs in Map 01.
- Chronoteeth
- Posts: 824
- Joined: Wed Jul 06, 2005 10:01
- TheDarkArchon
- Posts: 1000
- Joined: Wed Jul 06, 2005 11:58
- Location: What's that fucking smell
- Contact:
- Snarboo
- Posts: 469
- Joined: Thu Jul 07, 2005 2:35
- Location: space station base of the UAC
Pretty much, yeah. At first it didn't want to work, but then I found out I was placing a colon where there should have been a comma, ie I was typing JUMP(DEATH:1:100%) when I should have typed JUMP(DEATH:1,100%). The funny thing was that EDGE didn't yell at me for it, so it took me a while to fix it. :/TheDarkArchon wrote:The DROPITEM(actor) action and jumps, I guess.
- Chronoteeth
- Posts: 824
- Joined: Wed Jul 06, 2005 10:01
- Snarboo
- Posts: 469
- Joined: Thu Jul 07, 2005 2:35
- Location: space station base of the UAC
Pretty much, yes. Here's an example for EDGE:Chronoteeth wrote:So, what does this jump thing do? Randomly jumps between items?
Code: Select all
NULL:A:1:NORMAL:JUMP(SHOOT:5,40%);
This next example for EDGE is similar to how I made the box of shells randomly drop an item:
Code: Select all
[SOME_ITEM:9999]
STATES(DEATH)=NULL:A:0:NORMAL:JUMP(DEATH2:1,35%), //Will jump to frame 1 of state DEATH2
NULL:A:0:NORMAL:JUMP(DEATH3:1,15%), // = = = = = = = DEATH3
NULL:A:0:NORMAL:DROPITEM(MAGIC_BOOTS),
#REMOVE;
STATES(DEATH2)=NULL:A:0:NORMAL:DROPITEM(WAND_OF_POWER), //This is Frame 1 of DEATH2 for reference
#REMOVE;
STATES(DEATH3)=NULL:A:0:NORMAL:DROPITEM(GREATER_HEALING_SPELL),
#REMOVE;
- Chronoteeth
- Posts: 824
- Joined: Wed Jul 06, 2005 10:01
- Snarboo
- Posts: 469
- Joined: Thu Jul 07, 2005 2:35
- Location: space station base of the UAC
I don't think I will add any weapons from other versions of the game, simply because I don't know what those weapons are and I don't know what they look like. Are you sure they are totally new weapons, and not just replacements of existing weapons? I'm almost finished with this mod, and I don't want to put too many extra weapons in for fear of having to balance them all or having too many redundant ones.
- wildweasel
- DRD Team Admin (Inactive)
- Posts: 2132
- Joined: Wed Jun 29, 2005 22:00
- Location: the Admincave!
- Contact:
I've played Duke 64 as well and the new weapons are actually quite different. The Freezethrower and Devastator were completely removed, in favor of a grenade launcher and a chargeable Plasma Cannon that could also fire semi-automatic. The Chaingun was replaced with a pair of SMG's, which were weaker, but faster (and had more ammo). There were also special ammo pickups for several of the weapons - dum-dum rounds for the pistol, explosive shells for the shotgun, and homing missiles for the RPG. They also gave a graphical overhaul to the shrinker/expander, making it look more alien.
- Chronoteeth
- Posts: 824
- Joined: Wed Jul 06, 2005 10:01