![]() |
#81 | |||||
Re: H266MOD for EDuke32
Quote:
Quote:
Quote:
Quote:
Quote:
I'll keep testing though. |
||||||
![]() |
![]() |
#82 |
Re: H266MOD for EDuke32
This thread is now HOT!
![]() I've decided to cut the pipebomb alt firing mode altogether because MORTERs don't explode when when enemies are near. It would only have been useful in DukeMatch, but not much else. H266MOD v1.5 will be out in a few days. |
|
![]() |
![]() |
#83 |
Re: H266MOD for EDuke32
The Holoduke was only a Deathmatch weapon and 3dRealms kept it in.
![]() |
|
![]() |
![]() |
#84 | |
Re: H266MOD for EDuke32
Quote:
![]() |
||
![]() |
![]() |
#85 |
![]()
I'm sorry for being so delayed, but my education has started back up again. All I have do to is tone down the Pipebomb explosion sequence and test my TANK\TANK2 code. I don't really think anybody wants it (there have only been at the max 22 downloads for the old versions of H266MOD), although they were really buggy (for example I totally forgot to include HBoss.con in one of the old versions). I'm also completely flat out of ideas, other than:
They all haven't come straight out of my brain, but to have a quote to explain: |
|
![]() |
![]() |
#86 |
Re: H266MOD for EDuke32
Whatever happened to FreeFrag / Roger? From his last comments a few weeks ago over at AMC, it seemed he had fallen on hard times
![]()
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#87 | |
Re: H266MOD for EDuke32
Quote:
![]() |
||
![]() |
![]() |
#88 |
Re: H266MOD for EDuke32
I have PM'ed him a few times. I haven't gotten to download the 40MB package of stuff that he has for me (although he hasn't uploaded yet). If the stuff got erased... major bummer. I really want to work on Incinerator. All I've really done so far is make some simple code for the essences to bob up and down (Although he said he'd already done that) and mess around with some weapon vars. I can't really do anything with Incinerator until I have the data.
He has been active recently (for example he voted on my Maphacks poll) so I don't know why he hasn't responded to my PMs. This is also one of the main reasons I even released H266MOD. I want to practice on a mod that other people don't have to be critized for if I make a mistake. So really this mod is for practice, learning, and improvement for me. Also, if he lost his job then Incinerator is definately not (or at least shouldn't be) on his top 5 priority list. Real life comes first, then games. |
|
![]() |
![]() |
#89 |
Re: H266MOD for EDuke32
Update: I have gotten my custom BAR_MUSIC\BONUSMUSIC\ENDSEQVOL3SND4 to work, and I am about to try to get PIPEBOMBPROJ to work with changespritestat. However, I am going to try to add new code to FLOORFLAME\FIRE(2)\BURNING(2) so that instead of using hitradius or addphealth -<whatever> it uses something that won't cause actors to jib and cracks to blow up, or just not have enemies effected at all (which would defeat the purpose of FLAMETHROWER). After that (and uploading), v1.5 will be finished.
|
|
![]() |
![]() |
#90 |
Re: H266MOD for EDuke32
And what would that be? The first thing that comes to mind is having the enemies call a state which subtracts health from themselves if the flamethrower sprite is found nearby.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#91 |
Re: H266MOD for EDuke32
![]() ![]() ![]() And here I was trying to figure out something with hitscan... |
|
![]() |
![]() |
#92 |
Re: H266MOD for EDuke32
I thought of that because I'm going to change over to that method myself (more or less). There are two problems with using little hitradiuses (which is what my current code does): 1) It destroys bodies, which is silly, and 2) Actors being damaged by a hitradius cannot be simultaneously damaged by a different weapon. Problem 2) is quite bad if you have the flames damaging them every tick, or even every other tick. Monsters can actually become harder to kill, because you have to wait for the flames to die down before you can hurt them with anything else.
We'll have to keep in mind that subtracting health from a monster does not automatically kill it, even if health is reduced below zero.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more.
Last edited by DeeperThought; 08-19-2006 at 08:28 PM.
|
|
![]() |
![]() |
#93 |
![]()
Aren't there in-game checks that have the enemies die once their strength gets to 0 (namely "ifdead")?
A tip I can give you is to make two states somewhat like this and put it in your DTstatesevents.CON: Code:
state burning getactorvar[THISACTOR].burningvar spriteid getactor[THISACTOR].extra hp ldist THISACTOR spriteid xydist ifvarl xydist 76.8 { subvar hp 1 } ifvarl xydist 153.6 { subvar hp 1 } ifvarl xydist 230.4 { subvar hp 1 } ifvarl xydist 307.2 { subvar hp 1 } ifvarl xydist 384 { subvar hp 1 } ifvarl xydist 460.8 { subvar hp 1 } ifvarl xydist 537.6 { subvar hp 1 } ifvarl xydist 614.4 { subvar hp 1 } ifvarl xydist 691.2 { subvar hp 1 } ifvarl xydist 768 { subvar hp 1 } setactor[THISACTOR].extra hp ends state special_check findnearactorz FLOORFLAME 768 2048 TEMP findnearactorz FIRE 768 2048 TEMP0 findnearactorz FIRE2 768 2048 TEMP1 findnearactorz BURNING 768 2048 TEMP2 findnearactorz BURNING2 768 2048 TEMP3 ifvarn TEMP -1 { setactorvar[THISACTOR].burningvar TEMP state burning } ifvarn TEMP0 -1 { setactorvar[THISACTOR].burningvar TEMP0 state burning } ifvarn TEMP1 -1 { setactorvar[THISACTOR].burningvar TEMP1 state burning } ifvarn TEMP2 -1 { setactorvar[THISACTOR].burningvar TEMP2 state burning } ifvarn TEMP3 -1 { setactorvar[THISACTOR].burningvar TEMP3 state burning } ends Next, put this in EVENT_GAME: Code:
getactor[THISACTOR].statnum <temporary var> // This is for statnums so that I don't have to insert things in all the actors switch <temporary var> case 1: state special_check break // moveactors case 10: state special_check break // moveplayers endswitch |
|
![]() |
![]() |
#94 |
Re: H266MOD for EDuke32
I do it differently in several ways. First, I don't give actors a var for storing the ID of the sprite that is burning them. I just have them look for the flames, and if they find them nearby they take damage right then and there. Also, I don't have all those different distances that pile on the extra damage depending on how close they are. The fact that the player has a damage upgrade makes it complicated enough, so I just base the damage on that, regardless of the specific distance. Basing the check on statnum is a nice idea, except that there are a few of my actors who are immune to fire, so it has to be a bit more complicated. As for "ifdead" -- yes, theoretically that will be true of the actor is dead (though I have had problems with it). The question is, what do you do when you find out they are dead? You don't want to simply remove the sprite from the game with the killit command, obviously. And there is a different lying dead action for every actor, which is a lot of cases to cover. In my mod, there are several extra things that happen when a monster dies: it needs to call states for adding to the player's score, spawning coins and stuff, and adding to or removing from a couple of lists that I use for keeping track of targetting and resurrections. So my solution is simply to tell the actor that it has been shot, by manually setting its htpicnum and htextra. That way, it dies normally the next time ifhitweapon is called, and all the usual stuff happens.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#95 |
Re: H266MOD for EDuke32
Hmm, so if I set htextra to the var "hp" instead of manually setting the extra it will make it look like it died normally, or do I have to set an htpicnum? I'll also mess with the shade to make it look like it was burnt to a crisp. A problem that I'll have is with liztroops begging, so I'll add a check to not have them beg if the htowner is one of the fires or FLOORFLAME.
Last edited by Hendricks266; 08-20-2006 at 12:38 PM.
|
|
![]() |
![]() |
#96 |
Re: H266MOD for EDuke32
I always set both htextra and htpicnum.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#97 |
Re: H266MOD for EDuke32
I just attempted to put the methods for fire damage discussed above to use, but for some reason this code makes fire sprites disappear:
Code:
state special_check findnearactorz FIRE 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 FIRE setactor[THISACTOR].htpicnum TEMP2 } } findnearactorz FIRE2 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 FIRE2 setactor[THISACTOR].htpicnum TEMP2 } } findnearactorz BURNING 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 BURNING setactor[THISACTOR].htpicnum TEMP2 } } findnearactorz BURNING2 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 BURNING2 setactor[THISACTOR].htpicnum TEMP2 } } ends onevent EVENT_GAME // courtesy of Hendricks266: getactor[THISACTOR].statnum TEMP // This is for statnums so that I don't have to insert things in all the actors switch TEMP case 1: // moveactors case 10: // moveplayers state special_check break endswitch endevent |
|
![]() |
![]() |
#98 |
Re: H266MOD for EDuke32
If the fire sprites have a statnum of 1, then then the EVENT_GAME code will cause them to execute the state special_check. At that point, they will find themselves and hit themselves, killing themselves.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#99 |
Re: H266MOD for EDuke32
Hmm, I forgot about that. I'll have to add a check in like this with what is in red what is changed:
[CODE]state burning getactorvar[THISACTOR].burningvar spriteid ifvarvarn spriteid THISACTOR { getactor[THISACTOR].extra hp ldist THISACTOR spriteid xydist ifvarl xydist 76.8 { subvar hp 1 } ifvarl xydist 153.6 { subvar hp 1 } ifvarl xydist 230.4 { subvar hp 1 } ifvarl xydist 307.2 { subvar hp 1 } ifvarl xydist 384 { subvar hp 1 } ifvarl xydist 460.8 { subvar hp 1 } ifvarl xydist 537.6 { subvar hp 1 } ifvarl xydist 614.4 { subvar hp 1 } ifvarl xydist 691.2 { subvar hp 1 } ifvarl xydist 768 { subvar hp 1 } setactor[THISACTOR].extra hp } ends |
|
![]() |
![]() |
#100 |
Re: H266MOD for EDuke32
I am having some trouble myself with state special_check, and I cannot get any damage to be given to APLAYER, while most enemies jib on contact. I probably will change the max 10 hp dealed to 1 (per tick) or just have an "ifcount 10-30 { state burning2 resetcount }" argument.
DeeperThought, may I use that blue-green colored FIRELASER art you made in my mod? I would use it for HVacation as spritepal 1 to give it a more beachy theme. I have a new website here. It is only the title page, but I should start the Duke3D page soon. It may seem like a coincidence it is the same provider as DeeperThought's, but I honestly thought after doing some research that it was large enough while easy enough to use, plus it's free (hence the name). I am currently doing various testing with the FTP service currently, so it may appear corrupt, and\or there might be a page called "Test", which is nothing more than what it is. |
|
![]() |
![]() |
#101 |
Re: H266MOD for EDuke32
If that's the one I'm thinking of, I didn't make any art, I just took the FIRELASER sprite from the HRP and changed the color. Anyway, go ahead.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#102 | |
Re: H266MOD for EDuke32
Quote:
Code:
state hazard findnearactorz FIRE 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 FIRE setactor[THISACTOR].htpicnum TEMP2 } } findnearactorz FIRE2 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 FIRE2 setactor[THISACTOR].htpicnum TEMP2 } } findnearactorz BURNING 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 BURNING setactor[THISACTOR].htpicnum TEMP2 } } findnearactorz BURNING2 768 2048 TEMP ifvarn TEMP -1 { ifrnd 32 { setactor[THISACTOR].htextra ONE setvar TEMP2 BURNING2 setactor[THISACTOR].htpicnum TEMP2 } } ends |
||
![]() |
![]() |
#103 |
Re: H266MOD for EDuke32
So you mean the EVENT_GAME statnum code is what's causing it? Interesting.
|
|
![]() |
![]() |
#104 |
Re: H266MOD for EDuke32
|
|
![]() |
![]() |
#105 |
Re: H266MOD for EDuke32
Currently I have something to think about. If I do make HVacation, most of the tiles in my TILES020.ART will still be vanilla-fied. I know I can replace DEVASTATOR with the coconut sprites, but I am having trouble deciding what I can use to replace my nuke sprite, which is an RPG standing upright with the flame cut off. My choices so far:
|
|
![]() |
![]() |
#106 |
Re: H266MOD for EDuke32
Alright, progress is coming along very well. I need to fix all the bugs that are still there (believe me, there are less). I might even have betas of HVacation and HNWinter when the time comes!
I have added another set of frames for TANK2, as you can see from my new avatar. The new frames have a fireball coming out of the scorpion "tail". My avatar is a combination of the "launching" frames (what I call them) and the firing frames by Chip. An interesting thing to note is that on his frames, I had to redo the angle where it is facing you because he had copied the fire from the left turret and flipped it onto the right turret, so I made it blend in more. I am thinking about what to do with FLAMETHROWER. I don't think it deserves to be an alt firing mode for the RPG, but I know what I want for the pipebomb alt fire mode. I was thinking when I invented it that it could be of some tactical purpose, but it is so slow and you might as well use the devastator. state special_check is working partly. I have it detecting the presence of everything but FLOORFLAME, and it is giving damage too fast. I can fix the latter easily, but I don't know why it isn't finding FLOORFLAME. I have added an alternate firing mode for the shotgun. It is a laser gun, with the tripbomb laser sprite turned 90° and a cstat of 32. It has brand new sounds for both firing and reloading, and I am working on a model for the projectile. It does a bit more damage and it will eventually shoot through enemies. It uses twice the ammo, though. Does anyone know where I can get some good-looking firework art? Remember, my policy is to have compability for both 8-Bit Classic and 16\24\32-Bit Polymost modes. Any tips, comments, nitpicks, or suggestions?
Last edited by Hendricks266; 09-23-2006 at 07:44 AM.
Reason: Grammar
|
|
![]() |
![]() |
#107 |
Re: H266MOD for EDuke32
I'm having some trouble with my new launching frames. When I try to insert them into my TILES020.ART with DukeResART, it says that only 256-color bitmaps are allowed in Duke. When I try to insert it with BastART, it either gives a similar error message or it allows it, but the colors are all messed up. All I did was take the frames from the scorpion tank and those fireball sprites in Tiles #1665-1669 and paste them on top or behind of each other in GIMP. Is there any utility that can fix this for me or will all my work be for nothing?
|
|
![]() |
![]() |
#108 | |
Re: H266MOD for EDuke32
Quote:
|
||
![]() |
![]() |
#109 |
Re: H266MOD for EDuke32
I don't know how I did it, but I got them to work. How would I make it use the Duke palette anyway to save me trouble?
|
|
![]() |
![]() |
#110 | |
Re: H266MOD for EDuke32
Quote:
![]() |
||
![]() |
![]() |
#111 |
Re: H266MOD for EDuke32
In PSP9, you can as well export an original art file from the TILES000#.art group, like monsters, and once opened there, do nothing else but save the pallete for usage later.
|
|
![]() |
![]() |
#112 |
Re: H266MOD for EDuke32
Ah. I see.
Work is still going at an OK pace. I have decided to remove the alternate firing mode from the RPG. I think the FLAMETHROWER doesn't deserve to be in that slot. I'm sure I'll think of something, though. ![]() |
|
![]() |
![]() |
#113 |
![]()
Hello everybody.
I was wondering, would anyone care to make a single piece of art for me? It is very simple. The details are in Readme.txt of this rar file. |
|
![]() |
![]() |
#114 |
Re: H266MOD for EDuke32
I'm only working on minor things right now. The two alternate firing modes are working perfectly for what code I have now, although there is one feature of the SHOTGUNLASER that I need to add, which is the shoot-through-enemies effect. DeeperThought, is it hard to do something like that? I would put something like this in a state called from all the enemy actors at the very top of their code:
Code:
getactor[THISACTOR].htpicnum picnum getactor[THISACTOR].htextra hp ifvarn hp 0 { ifvare picnum SHOTGUNLASER { getactor[THISACTOR].htang ANGVAR eshoot SHOTGUNLASER setactor[RETURN].ang ANGVAR } } On another subject, if anyone wants to contact me quickly and easily, you can use my AIM account: ![]()
Last edited by Hendricks266; 10-23-2006 at 04:49 PM.
|
|
![]() |
![]() |
#115 |
Re: H266MOD for EDuke32
I've never used htang, so I'm not sure if it really is what it sounds like it is (I've been fooled by names on more than one occasion).
In addition to the zvel problem, you're going to have the problem that the projectile will always come out at the z position at which the actor normally fires, so even if the victim gets shot in the head, the new shot will come out of the middle of its back. It might also cause the actor to shoot itself by turning the shot around, depending on whether the shot spawns in front of the actor before changing angles. The only way you can find out for sure about these and other potential problems is by trying it out and seeing what happens.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#116 | |
Screenshots!
Long Awaited Screenshots: (no release yet, sorry
![]() Nuke Explosion Sequence: (You can't see the nuke, but it is there.) H266MOD1.jpg Laser Tripbomb Explosion Sequence: H266MOD2.jpg Laser Tripbomb Explosion Sequence Coming at Duke: H266MOD3.jpg The Pipebomb Explosion Sequence is the coolest one (IMO), athough there is no screenshot here. I will upload some more once I make more. I will also take a moment to explain the (Game)Var Bar (Catchy name, eh?). Quote:
|
||
![]() |
![]() |
#117 | |
Re: H266MOD for EDuke32
Quote:
![]() BTW, Hendricks, I'm not sure if you've said this already, but will nuclear radiation spawn after the nuke explodes?
__________________
Smoker incapacitated Telee |
||
![]() |
![]() |
#118 |
![]()
^ Nuclear Radiation? I have yet to add that. (or think about adding that)
![]() Do you think I should do it SW style (i.e. little puffs of green stuff) or do something like make the ground turn green? ![]() |
|
![]() |
![]() |
#119 | |
Re: H266MOD for EDuke32
Quote:
__________________
Smoker incapacitated Telee |
||
![]() |
![]() |
#120 |
Re: H266MOD for EDuke32
Could make use of the fog thats coded into Eduke and add some sorta greenish fog to the area once the nuke goes off. slowly increasing the denisity, then decreasing.. But Im sure its going to take a lot of playing with to get something like taht right.
__________________
If you give a man a jingle, he'll jingle for a day. If you teach a man to jingle, he'll jingle all the way! I got a fever. And the only prescription, is more cowbell. |
|
![]() |
Bookmarks |
|
|