[WIP] No name yet
- BadMojo
-
Topic Author
- Wicked
-
- Posts: 224

Let me know what you think. I welcome any suggestions on what this could turn into.
Edit: And the spawn sprite
UPDATE:
https://www.dropbox.com/s/y29da0re5vogwhj/RIFLESHEET.png?dl=0
Ive started on the reload frames... Im thinking duke style reload.
EDIT2: And heres something I whipped up with the latest reload frames.
https://www.dropbox.com/s/ebipucrjoh4hgth/RIFLE.ZIP?dl=0
Please Log in or Create an account to join the conversation.
- MagicWazard
-
- Moderator
-
- Posts: 808

I know it's still rough, but I wanted to point out that in its current state, the pickup sprite doesn't work, and it feeds off of shotgun shells. (The summon name is still "AutoShot".) The reload frames are, admittedly, pretty rough, but the rest of the art is good.
Anyways, as for what it could turn into, you could make it into a weak railgun attack with the trails customized to look like a trail of smoke. That's what I did for the "Rifle" currently on the repo; I didn't like it shooting 10 bullets at once to try to simulate over-penetration (especially since it's really poorly-balanced and super-overpowered on top of that), so I gave it a rail attack for over-penetration instead, with a Hold state to introduce recoil so you can't hold down the trigger and snipe something to death from afar with no penalty (unlike the "Rifle" currently on the repo, which can kill a Cyberdemon with ease from across the map). I kept its custom ammo type, though, since it's pretty good; you may want to use it too.
Here's the attack script I'm using for the "Rifle". I'm not saying you need to copy this exactly, but it's here as an example:
As for a name? Maybe "Tactical Rifle" or "DMR" (Designated Marksman Rifle).
Please Log in or Create an account to join the conversation.
- BadMojo
-
Topic Author
- Wicked
-
- Posts: 224
Id just like to say firstly ignore the "example zip", its definately not going to be part of the final product, I just used it to test the frames and see how smoothly they work before touching up on the graphics themselves... and considering it was already in my dropbox folder, I thought I might as well just copy the link and paste it here as a "taster" to show off the animations in action.
I can defiantely see the problems with the reload frames, but at least they work well together in my opinion, and yes they will be worked on frame by frame as now I have the angles right, its just a matter of clearing up that distortion amongst other things... but you know me, it looks crap to start with, but I some how pull a magic paintbrush out of my a** and make everything look 100 times better

I like your idea of a railgun, I didn't think of that, and so far I've not played with the railgun attack function, so it will be good learning experience. And I may consider using a custom ammo type for this, maybe not something that someone else has done, I like to try and keep things original/unique.
As for the scope....

... ^^ But all that being said, I can implement 2 versions of the weapon, one with the broken scope sprite, and the other with the good one, I do believe I've seen some weapons in the repo that do that.. But if im gonna fix it, ill implement the zoom feature as I personally hate it when I play a game where the weapon clearly has a scope but it doesnt do anything.... Or rather than zoom, the other option is to do a future shock/skynet laser rifle style scope, but Im not sure if its even possible to do a "picture within a picture" thing (if you have played the game that would make sense)... but if your ok with 2 versions, my question to that would be:
1. Have them in the same package (there will be 2 txt files with the code for each weapon, and a decorate.txt file to read both of those files as to be able to implement either/or in a map)
OR
2. separate packages.... same thread or sepearate?
And ill work on the spawn sprite once Ive gotten the rest of the weapon right, to try and keep the end result consistent with the final animations
Edit: Oh yea and as for the name, Ill work on the suggestions you have provided, may even end up being one of those if I cant think of anything better by the time this is ready for a submission.
Please Log in or Create an account to join the conversation.
- MagicWazard
-
- Moderator
-
- Posts: 808
BadMojo wrote: And ill work on the spawn sprite once Ive gotten the rest of the weapon right, to try and keep the end result consistent with the final animations
Oh, when I said the pickup sprite "didn't work", I meant it was literally invisible during gameplay. Not that it was bad.

Please Log in or Create an account to join the conversation.
- BadMojo
-
Topic Author
- Wicked
-
- Posts: 224

Please Log in or Create an account to join the conversation.
- BadMojo
-
Topic Author
- Wicked
-
- Posts: 224
Please Log in or Create an account to join the conversation.
- MagicWazard
-
- Moderator
-
- Posts: 808
BadMojo wrote: I have a question.. In your A_RailAttack parameters, your have "random(1,4) * 20"... I have used something like that before in one of my other weapons as it was suggested for damage amount per hit.... As you know, Im no expert in maths, so I just wanted to confirm if Im right in thinking that it means (in blatant english): random number(between 1 and 4 ) times 20... so if that random number turned out to be 4, it would do 80 damage... if that random number was 2 it would do 40 damage, and it can go as low as 20 and so on.
Correct! Obviously, tweak the values as you see fit if you decide to use such a formula. And of course, you can always add additional damage on top of that; for example, "(random (1, 4) * 10) + 40" would result in a spread of 10 - 40 points of "random" damage, plus an additonal 40 points of "guaranteed" damage.
Please Log in or Create an account to join the conversation.
- BadMojo
-
Topic Author
- Wicked
-
- Posts: 224

I've actually been playing around with that A_RailAttack function, I have another question actually.. Its not going to be implemented in this submission, but I was playing with having the function in the ready state so that it acts like a laser beam, disabling the damage and all of that... if I added my own sprites instead of the standard particle, with half transparent colours, or perhaps a dummy sprite with nothing and added gldefs to it... or something.. I think it could look good for my megawad... but the problem is when the "beam" hits an enemy, the enemy still acts as if its being shot, is there a way to disable that?
Or is there a better way to achieve a laser beam (NOT dot, thats easy) but an actual beam that doesn't disturb enemies?
Please Log in or Create an account to join the conversation.
- MagicWazard
-
- Moderator
-
- Posts: 808
Please Log in or Create an account to join the conversation.
- Blue Shadow
-
- Administrator
-
- Posts: 1129
Please Log in or Create an account to join the conversation.