武装突袭3

武装突袭3

Project DISMEMBER (SP-MP)
 此主题已被置顶,因此可能具有重要性
Sin  [开发者] 2024 年 3 月 18 日 下午 7:26
Bugs & Issues
If you encounter any bugs or issues with the mod, please let us know here! Be as descriptive as possible. Thanks 👍
< >
正在显示第 1 - 15 条,共 18 条留言
NF_F16 2024 年 3 月 19 日 上午 3:30 
First of all amazing mod and good job on getting it to work on MP and Zeus. In regards to errors, there aren't errors or incompatibilities but when in Zeus, after a unit is dismembered, it is not possible to delete them, and lastly I noticed that the units limbs when dismembered have shadows that display their previously severed limb, not that it's an error because it might be just the Arma engine.
cndrabs_ 2024 年 3 月 19 日 上午 4:45 
When units in unconsciousness state or knocked, after i blow them up with explosion not direct hit (I'm using Project Injury Reaction), they often disappear into no where (I can't even see them in the zeus units list or they're body in the game) and when i shoot them with AK (Non-Explosive or Low Caliber Ammo) in unconsciousness state, they just turned into the dismembered body (When i killed or shoot them, the dismembered body just standing up for a seconds) and i don't know why but it did work with ZEN placed units, but it seems didn't work with WBK Simple Blood.
最后由 cndrabs_ 编辑于; 2024 年 3 月 19 日 上午 4:56
Warboy 2024 年 3 月 19 日 上午 4:56 
Our (101st AB Vietnam group) findings when using your mod with bloodlust versions.

https://steamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=667953829&searchtext=bloodlust+mp
Pros:
-Effects look really cool
-Massive amount of customization for tweaking to allow better FPS
-ACE Compatible
-Very neat overall for immersion and gives a real, "war is hell" type deal

Cons:
-Previous uses with this have led to some server issues but that was due to a lack of tweaking
-A metric ton of options with regards to tweaking, so it will probably be a lot of trial and error
-Doesn't work on AI with current AI server settings as AI death is set to "Never" they won't actually gib unless we change it
-Might seem cartoony to some
-Whacky af ragdolls with explosions launching AI across tens of meters
最后由 Warboy 编辑于; 2024 年 3 月 19 日 上午 4:58
Warboy 2024 年 3 月 19 日 上午 4:57 
https://steamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2916769685&searchtext=bloodlust+mp
Pros:
-A much less "demanding" version of Bloodlust
-Has a few extra mods like head gibbing
-Gives a real "War is hell" vibe with the mod

Cons:
-Mod is not customizable at all. Could not find a thing to actually tweak
-Most likely not ACE compatible
-The head shot effects are cool and do only happen on high-cal weapons like 50s but also seem really cartoony
-Dismemberment is extremely random and doesn't happen often
最后由 Warboy 编辑于; 2024 年 3 月 19 日 上午 4:58
Sin  [开发者] 2024 年 3 月 19 日 上午 7:56 
引用自 NF_F16
First of all amazing mod and good job on getting it to work on MP and Zeus. In regards to errors, there aren't errors or incompatibilities but when in Zeus, after a unit is dismembered, it is not possible to delete them, and lastly I noticed that the units limbs when dismembered have shadows that display their previously severed limb, not that it's an error because it might be just the Arma engine.

As for the units not deleting I'll look into that I know what you're talking about.. its been trial and error with Zeus we will solve it though.
As for the shadows that will be fixed with future models. The character models still use the default Arma 3 character shadow so they still have limb shadows for now. Big thanks for testing 👍

引用自 cndrabs_
When units in unconsciousness state or knocked, after i blow them up with explosion not direct hit (I'm using Project Injury Reaction), they often disappear into no where (I can't even see them in the zeus units list or they're body in the game) and when i shoot them with AK (Non-Explosive or Low Caliber Ammo) in unconsciousness state, they just turned into the dismembered body (When i killed or shoot them, the dismembered body just standing up for a seconds) and i don't know why but it did work with ZEN placed units, but it seems didn't work with WBK Simple Blood.

Appreciate the comment I will look into this more and test with those mods, I know what you mean about units disappearing I will looking into that issue as well its on my bug list. I also need to add a check to see if the unit has died to the explosion, if not it should not apply the dismemberment that should prevent bodies from dismembering when shot like you mentioned.

Big thanks for testing everyone this is a fun learning experience
Sin  [开发者] 2024 年 3 月 20 日 下午 7:09 
Update in the coming days should fix the issues with bodies disappearing occasionally and bodies being dismembered later on if they are not killed instantly.
ZluskeN 2024 年 3 月 23 日 上午 2:20 
I noticed you are using addItemToUniform to add uniform items to the dismembered body. This will not work since it is in fact not wearing a uniform. You could use addItemToVest instead to add the uniformitems to the vest, but a more elegant solution is to use setUnitLoadout, which ensures all items are transferred.

// Save specific equipment of the original unit
_gear = getUnitLoadout _unit;
// Get the items in the various containers of the original unit (minus uniform items)
_loadout = [_gear select 0, _gear select 1, _gear select 2, nil, _gear select 4, _gear select 5, _gear select 6, _gear select 7, _gear select 8, _gear select 9];
// Create a new unit with the specified model at the original position
_newUnit = createVehicle [_newModel, _pos, [], 0, "CAN_COLLIDE"];
// Apply specific equipment of the original unit to the new unit
_newUnit setUnitLoadout _loadout;
// Add the uniform items to the new unit
{
for "_i" from 1 to (_x select 1) do {
_newUnit addItem (_x select 0);
};
} foreach (_gear select 3 select 1);
// Set the damage of the new unit to 1.0 (dead)
Sin  [开发者] 2024 年 3 月 23 日 下午 3:06 
引用自 ZluskeN
I noticed you are using addItemToUniform to add uniform items to the dismembered body. This will not work since it is in fact not wearing a uniform. You could use addItemToVest instead to add the uniformitems to the vest, but a more elegant solution is to use setUnitLoadout, which ensures all items are transferred.

// Save specific equipment of the original unit
_gear = getUnitLoadout _unit;
// Get the items in the various containers of the original unit (minus uniform items)
_loadout = [_gear select 0, _gear select 1, _gear select 2, nil, _gear select 4, _gear select 5, _gear select 6, _gear select 7, _gear select 8, _gear select 9];
// Create a new unit with the specified model at the original position
_newUnit = createVehicle [_newModel, _pos, [], 0, "CAN_COLLIDE"];
// Apply specific equipment of the original unit to the new unit
_newUnit setUnitLoadout _loadout;
// Add the uniform items to the new unit
{
for "_i" from 1 to (_x select 1) do {
_newUnit addItem (_x select 0);
};
} foreach (_gear select 3 select 1);
// Set the damage of the new unit to 1.0 (dead)

I will look into this thank you for checking the code!
ZluskeN 2024 年 4 月 11 日 上午 7:50 
Thanks fo the update :) Now that CBA functions are available you could also consider using CBA_fnc_addMagazine and CBA_fnc_addItem so that uniformitems that do not fit in the vest or backpack will be placed on the ground:

{
for "_i" from 1 to (_x select 1) do {
if (count _x == 3) then {
[_newUnit, _x select 0, _x select 2, true] call CBA_fnc_addMagazine;
} else {
[_newUnit, _x select 0, true] call CBA_fnc_addItem;
};
};
} foreach (_gear select 3 select 1);
Sin  [开发者] 2024 年 4 月 11 日 上午 9:15 
引用自 ZluskeN
Thanks fo the update :) Now that CBA functions are available you could also consider using CBA_fnc_addMagazine and CBA_fnc_addItem so that uniformitems that do not fit in the vest or backpack will be placed on the ground:

{
for "_i" from 1 to (_x select 1) do {
if (count _x == 3) then {
[_newUnit, _x select 0, _x select 2, true] call CBA_fnc_addMagazine;
} else {
[_newUnit, _x select 0, true] call CBA_fnc_addItem;
};
};
} foreach (_gear select 3 select 1);

Thanks for showing an example, I was planning on adding this feature but was not sure how to go about doing it. CBA and SQF are new to me, Much appreciated!!!
ZluskeN 2024 年 4 月 11 日 上午 11:36 
np 👍 I also noticed a bug in the CBA settings: You need to remove line 18 in the dismember chance setting, you could also change line 17 like this to make a true percentage slider:

[
"DismemberChance", // Change the identifier to a more descriptive name
"SLIDER",
"Chance of body dismembering",
"Project DISMEMBER",
[0, 1, 0.75, 2, true],
1,
{},
false
] call cba_settings_fnc_init;

You would then also need to change line 23 in the dismemberment script:

if (random 1 > _sliderValue) exitWith {};
_mickey_ 2024 年 5 月 2 日 下午 1:14 
Thanks for this mod, but it cannot be used without bugs spawning. When I was subscribe to this mod, a error message will appear multiple times when you start the game, when start editor, when start mission -

Error Params: Type code, expected Bool
File /x/cba/addons/settings/fnc_init.sqf, line 1105


In addition, there are not enough current mod settings. Headgear settings seem unnecessary. In my opinion, the more necessary settings are - what kind of explosives tear off limbs. In the current version, this is can be caused by a 40mm grenade or hand grenade, which looks stupid. Larger explosives should cause limbs to be blown off and there is no way for the player to adjust this.
Sin  [开发者] 2024 年 5 月 2 日 下午 3:13 
引用自 _mickey_
Thanks for this mod, but it cannot be used without bugs spawning. When I was subscribe to this mod, a error message will appear multiple times when you start the game, when start editor, when start mission -

Error Params: Type code, expected Bool
File /x/cba/addons/settings/fnc_init.sqf, line 1105


In addition, there are not enough current mod settings. Headgear settings seem unnecessary. In my opinion, the more necessary settings are - what kind of explosives tear off limbs. In the current version, this is can be caused by a 40mm grenade or hand grenade, which looks stupid. Larger explosives should cause limbs to be blown off and there is no way for the player to adjust this.

Thank you the feedback! I agree there is some bugs present in this public version and they are in the process of being fixed, some have already been fixed just not pushed as I've been busy working. A good chunk of this mod is being reworked ATM. Also I very much agree there needs to be a setting to determine the explosive and damage severity, part of the reason it's taking me a bit to push updates i'm making damage models from scratch, for every limb with varying amounts of damage that we can use for different explosives like 40mm grenades vs hand grenades like you mentioned. Once these are complete the mod wont look so stupid and low quality. I'm a perfectionist I spend a lot of time studying references for realism, I don't rush things like some of the other gore mods. I care about the quality of the mod, I really want to introduce a proper gore mod to A3 similar to quality of Hell Let Loose, WaW, etc..
最后由 Sin 编辑于; 2024 年 5 月 2 日 下午 3:14
_mickey_ 2024 年 5 月 2 日 下午 3:32 
引用自 Sin
引用自 _mickey_
Thanks for this mod, but it cannot be used without bugs spawning. When I was subscribe to this mod, a error message will appear multiple times when you start the game, when start editor, when start mission -

Error Params: Type code, expected Bool
File /x/cba/addons/settings/fnc_init.sqf, line 1105


In addition, there are not enough current mod settings. Headgear settings seem unnecessary. In my opinion, the more necessary settings are - what kind of explosives tear off limbs. In the current version, this is can be caused by a 40mm grenade or hand grenade, which looks stupid. Larger explosives should cause limbs to be blown off and there is no way for the player to adjust this.

Thank you the feedback! I agree there is some bugs present in this public version and they are in the process of being fixed, some have already been fixed just not pushed as I've been busy working. A good chunk of this mod is being reworked ATM. Also I very much agree there needs to be a setting to determine the explosive and damage severity, part of the reason it's taking me a bit to push updates i'm making damage models from scratch, for every limb with varying amounts of damage that we can use for different explosives like 40mm grenades vs hand grenades like you mentioned. Once these are complete the mod wont look so stupid and low quality. I'm a perfectionist I spend a lot of time studying references for realism, I don't rush things like some of the other gore mods. I care about the quality of the mod, I really want to introduce a proper gore mod to A3 similar to quality of Hell Let Loose, WaW, etc..

Very nicely said! I've been dreaming about what you said above for 10 years. I hope you have enough knowledge to realize what you want.

If you need help doing what you said, then try contact me. I don't understand Arma3 scripting, but I'm not bad at 3D modeling things, or I can make textures for you if you explain to me what characteristics they should have.
_mickey_ 2024 年 5 月 2 日 下午 3:38 
@Sin I have a question. There is no way to keep the current uniform on a character, who loses a limb?

I've been using the "MrSanchez' Head Gore Mod" for a long time, it works with the head, but as I understand it, his mod replaces the face with a 3D model without a head. As a result, the player sees the current uniform of the unit, and the absence of a head. The mod is not bad, but it lacks blood in place of the lost head.
< >
正在显示第 1 - 15 条,共 18 条留言
每页显示数: 1530 50