Should you aim for the groin instead of chest?
- spheretech
- Registered user
- Posts: 303
- Joined: 31 Jul 2015, 16:03
Should you aim for the groin instead of chest?
So let's say you get a bone fracture in your groin or chest. You start moving and take organ damage.
Chest = heart, lung, liver damage
Groin = damaged kidneys
I've never been shot in the groin, but I think you take toxin damage over time.
It may kill you, but having a chest fracture and moving around jumbles all your organs and gets you into red health pretty fast.
Kidney damage on the other hand takes time to work, so would this give you some more time to kick ass and get yourself to safety?
Chest = heart, lung, liver damage
Groin = damaged kidneys
I've never been shot in the groin, but I think you take toxin damage over time.
It may kill you, but having a chest fracture and moving around jumbles all your organs and gets you into red health pretty fast.
Kidney damage on the other hand takes time to work, so would this give you some more time to kick ass and get yourself to safety?
- Halinder
- Registered user
- Posts: 315
- Joined: 28 Oct 2015, 20:56
Re: Should you aim for the groin instead of chest?
In my experience, the groin seems to break bones much easier, and toxins pile faster than dylovene can take care of them. With heart/lung/liver damage, you can at least counter it with dexalin without the damage becoming ridiculous.
https://i.gyazo.com/75f378476ef8f516e2f ... 2fa13b.png
LOOC: Halinder: p.s. the alien hive has huggers that you can use for breathing masks
LOOC: Barnabus Jones: Perfect game tips and tricks from halinder
[D] OOC: Eonoc: Hitler was a giant glowing yellow bug lizard. A very charismatic one.
LOOC: Halinder: p.s. the alien hive has huggers that you can use for breathing masks
LOOC: Barnabus Jones: Perfect game tips and tricks from halinder
[D] OOC: Eonoc: Hitler was a giant glowing yellow bug lizard. A very charismatic one.
- Derpislav
- Registered user
- Posts: 823
- Joined: 10 May 2015, 09:14
Re: Should you aim for the groin instead of chest?
Dexalin plus can be made at bulk by even quarter-competent doctors and will keep you walking for hours. If doctors are dumb, though, and there are no medics in sight - groin damage won't take you out of the fight that fast. It will take you out for good, even if a medic gets to you, though.
Lockie 'Furry' Hughes, your local source of annoyance, medicine and Will. E. Coyote engineering. Mostly medicine. Maybe annoyance.
-
- Registered user
- Posts: 603
- Joined: 10 Aug 2015, 22:14
Re: Should you aim for the groin instead of chest?
Bay-med can, when utilized correctly, can save you from pretty much anything. Even with the OD's on Dylovene and Tricord, you CAN be saved.
As for groin vs chest, kidney/appendix trauma is much easier to heal via surgery since you don't need to use the bone saw. So if you get to Medbay, you should be perfectly fine as long as the doctors are even half competent.
But that's the kicker. Medics have very few tools at their disposal to actually handle toxins, limited to tricordrazine, dylovene, and cryo. Of course, tea and doctors delight work as well, but you're not like to get either of those. However if you actually know what you're doing, the only reason you should lose a patient in Medbay is if a xeno pops out.
As for groin vs chest, kidney/appendix trauma is much easier to heal via surgery since you don't need to use the bone saw. So if you get to Medbay, you should be perfectly fine as long as the doctors are even half competent.
But that's the kicker. Medics have very few tools at their disposal to actually handle toxins, limited to tricordrazine, dylovene, and cryo. Of course, tea and doctors delight work as well, but you're not like to get either of those. However if you actually know what you're doing, the only reason you should lose a patient in Medbay is if a xeno pops out.
- username123
- Registered user
- Posts: 285
- Joined: 08 Feb 2016, 06:45
Re: Should you aim for the groin instead of chest?
Aim for legs, if you ff, at worst, the person will have internal bleeding, a broken leg and brute damage that can be fixed with bandages and heal meds, quick cloth and splints. You can't splint the groin, chest or head (which in the code, reduces a lot of pain for the character) and if you have hyperzine, the person will move like if the leg is perfectly fine.
-
- Donor
- Posts: 297
- Joined: 18 Oct 2014, 00:12
Re: Should you aim for the groin instead of chest?
Aiming for the legs will make you much less accurate when firing in general,so good luck dealing damage to xenos. On top of that, I donèt think the standard marines legs are armoured and if they are, not as much as the chest.username123 wrote:Aim for legs, if you ff, at worst, the person will have internal bleeding, a broken leg and brute damage that can be fixed with bandages and heal meds, quick cloth and splints. You can't splint the groin, chest or head (which in the code, reduces a lot of pain for the character) and if you have hyperzine, the person will move like if the leg is perfectly fine.
- LordeKilly
- Registered user
- Posts: 806
- Joined: 24 Feb 2015, 16:55
- Location: mongoria
- Byond: lordekilly
Re: Should you aim for the groin instead of chest?
You don't shoot people in the dick. That's a dick move dude.
- username123
- Registered user
- Posts: 285
- Joined: 08 Feb 2016, 06:45
Re: Should you aim for the groin instead of chest?
Thats not how things work in the game, aiming for any part of the body give you the same accuracy (in terms of if the bullet hits the body or not), but when a bullet or projectile hit a mob, the game generate a random number and this random number decide which part of the body will the bullet hit, this number will increase the chances to hit X part of the body depending on which part of the body you are aiming, but in general the chest has a higher chance to be hitted, i'll explain this with pseudo code.RoswellRay wrote: Aiming for the legs will make you much less accurate when firing in general,so good luck dealing damage to xenos. On top of that, I donèt think the standard marines legs are armoured and if they are, not as much as the chest.
Aim intent for chest.
accuracy +10= accuracy //sets the accuracy to 10
Rng A (0-100) //will generate a random number from 0 to 100 that will be stored in the A variable
final_accuracy=accuracy+A //the random number will be added to the predefined accuracy when you aim for the chest to define which part of the body the bullet will hit
cond (final_accuracy >= 10 OR final_accuracy >= 25) Hit chest
(final_accuracy >= 26 OR final_accuracy >= 36) Hit head
(final_accuracy >= X OR final_accuracy >= Y) Hit Z part of the body
(final_accuracy >= 90 OR final_accuracy >= 110) Miss shot
..... till all the parts of the body are evaluated
Now, when you aim for another part of the body the accuracy value might be lower or higher, from my experience, the accuracy when you aim to the chest has the highest value compared to when you aim to another part of the body.
This is what i deduce from my experience playing the game, values are not exact, and might not even be like this, but this is how i belive it works and it makes sense.
- MrJJJ
- Registered user
- Posts: 1935
- Joined: 12 Jan 2015, 10:51
- Location: Spider Lab
Re: Should you aim for the groin instead of chest?
Chest definitley, its where majority of your armor is and likely to negate most FF damage you would have dealt otherwise, groin is not that lucky...RIP
- spheretech
- Registered user
- Posts: 303
- Joined: 31 Jul 2015, 16:03
Re: Should you aim for the groin instead of chest?
FF shouldn't do bone damage when
- freemysoul
- Registered user
- Posts: 523
- Joined: 01 Sep 2015, 10:43
- Location: New Kerbin
- Byond: freemysoul
Re: Should you aim for the groin instead of chest?
Or a pussy move if their female...... EYyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyLordeKilly wrote:You don't shoot people in the dick. That's a dick move dude.
- spheretech
- Registered user
- Posts: 303
- Joined: 31 Jul 2015, 16:03
Re: Should you aim for the groin instead of chest?
get out of my threadfreemysoul wrote: Or a pussy move if their female...... EYyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
- Mitchs98
- Registered user
- Posts: 662
- Joined: 23 Jan 2015, 21:56
Re: Should you aim for the groin instead of chest?
Just. 10/10.freemysoul wrote: Or a pussy move if their female...... EYyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
-
- Registered user
- Posts: 603
- Joined: 10 Aug 2015, 22:14
Re: Should you aim for the groin instead of chest?
Hopefully never.spheretech wrote:FF shouldn't do bone damage when
- spheretech
- Registered user
- Posts: 303
- Joined: 31 Jul 2015, 16:03
Re: Should you aim for the groin instead of chest?
Burst fire gyrostabbed bayonet quickfire m41 is my favorite weapon tooWickedtemp wrote: Hopefully never.
- username123
- Registered user
- Posts: 285
- Joined: 08 Feb 2016, 06:45
Re: Should you aim for the groin instead of chest?
Pretty bad modded weapon because the quickfire doesn't increase the firing speed and it reduces a lot the accuracy.spheretech wrote: Burst fire gyrostabbed bayonet quickfire m41 is my favorite weapon too
- spheretech
- Registered user
- Posts: 303
- Joined: 31 Jul 2015, 16:03
Re: Should you aim for the groin instead of chest?
No, not a bad modded weapon - THE worst possible attachment combination you could put on a rifle, you will FF everything. That was the jokeusername123 wrote: Pretty bad modded weapon because the quickfire doesn't increase the firing speed and it reduces a lot the accuracy.