-
Content Count
10 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout MeatAlive
-
Rank
Private
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Did some script about intels. here is an Youtube video that showcase the script. Also, there is the git available in the comment:
-
Did this procedure / tutorial to create a new inventory item: https://github.com/gerard-sog/arma3-macvsog-columbia-items arriving 8 years later but now we have it here 🙂
-
Tutorial: create an inventory object from scratch
MeatAlive posted a topic in ARMA 3 - MODELLING - (O2)
Procedure to create an inventory item from scratch: https://github.com/gerard-sog/arma3-macvsog-columbia-items This article will provide information on how to create a new Arma 3 inventory object from scratch. From an idea into an item that has the shape we want, the weight we chose, the texture we desire and that is available as a mod in order to make it accessible for multiplayer missions. I will follow the procedure described in this repository to create new Item for MACV-SOG such as seismic sensor, etc. The result will be a mod compiling all those items. You can find the mod here: https://steamcommunity.com/sharedfiles/filedetails/?id=3332232289 If the procedure is wrong/not clear don't hesitate to create an issue and I will gladly update it. -
MeatAlive changed their profile photo
-
release Mace Trap for Prairie Fire
MeatAlive replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I reworked and improved on johnnyBoy's scripts by making it work on local and dedicated server: Johnnyboy for original implementation of mace trap that my scripts are based on Savage Game Design for the objects and sound files used by this script. HOW TO ADD THESE TRAPS TO YOUR MISSION 1. Place a Whip Trap object in the editor. The direction you set the trap will be the direction the mace will swinging. 2. In the Whip Trap object's init field, put the following code: [[this, 'WEST'], "functions\TRAPS\swinging\columbia_fnc_create_swinging_mace_trap.sqf"] remoteExec ["execVM", 0, true]; or [[this, _trap_height, _tree_type], "functions\TRAPS\falling\columbia_fnc_create_falling_mace_trap.sqf"] remoteExec ["execVM", 0, true]; _trap_height: Integer (default 0, will allow the height to be automatically managed depending on _tree_type) _tree_type: Integer 0: no tree. 1: "\vn\vn_vegetation_f_exp\tree\vn_t_ficus_big_f.p3d" 2: "\vn\vn_vegetation_f_exp\tree\vn_t_inocarpus_f.p3d" 3: "vn\vn_vegetation_f_exp\tree\vn_t_palaquium_f.p3d" For more information (or to see the code) check https://github.com/gerard-sog/arma3-macvsog-columbia-scripts , https://github.com/gerard-sog/arma3-macvsog-columbia-scripts/tree/main/functions/TRAPS -
SOG Radio Support Module Issue
MeatAlive replied to thoodhun's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@saintaw I think I acheived what you want. see my git here https://github.com/gerard-sog/arma3-macvsog-columbia-scripts and if you have question ping me (see also README.md in "Features - 3. Radio Support"). -
release Mace Trap for Prairie Fire
MeatAlive replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
FOUND A SOLUTION: just replace: private _future = time + 10; private _lifeState = lifeState _unit; waitUntil {sleep .1; !(lifeState _unit == _lifeState) or time > _future}; if !(lifeState _unit == _lifeState) then by: if ((_unit distance _mace) < 3) then in files JBOY_punjiMaceTrap.sqf and JBOY/mace/maceVictim.sqf. -
release Mace Trap for Prairie Fire
MeatAlive replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Done some more testing and I finally found the root cause of my issue (why the player was almost never killed and attached to the mace). It is linked to the ace medical property "Player Critical Damage Threshold". It seems like your scrip @johnnyboy checks the lifeState ( https://community.bistudio.com/wiki/lifeState ) of the player to detect a change in order to kill the unit and attach it to the mace. if !(lifeState _unit == _lifeState) then Nevertheless, I tried updating the logic to be based on something else (like the total amount of damage of the player) getAllHitPointsDamage player but without success... Unfortunately, we cannot increase the "Player Critical Damage Threshold" value above 1.0 and use your script currently (if we want player to be killed and attached on the mace). If you have a suggestion on how i could update the code feel free to tell me and if I manage to make it work I will post the "solution" here 🙂 . -
release Mace Trap for Prairie Fire
MeatAlive replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I tested various type of terrain (angled, flat, etc.) and more ore less same issue every time. I tried to adjust the rope length but since I started to learn arma3 script recently it is not always easy 😛 . I will try to tweak some more parameters (the mass does not seem to affect the first fall that much AND shorter rope has kind of the same issue) and if if find a better sets of param for me I will post it here 🙂 . I think the issue is in the code that increases the mass of the mace when it falls, I think when it gets near of the trap the weight is too much. PS: Thx again for your scripts ! they are so cool ! I wish I had the skills to code that sort of stuff -
-
release Mace Trap for Prairie Fire
MeatAlive replied to johnnyboy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello, really nice code ! Is there a way to make the rope less flexible ? Else it always hits to ground first and this slows the mace quit a lot 😞 . -- Found in maceTrapCreate.sqf _mace setMass 170; // realtively low mass so initial swing doesn't hit the ground, then set higher so hangs lower (in controlMaceSwing function) I will try different values to see if it helps. -- does not seem to impact 😕 need help -
SOG Radio Support Module Issue
MeatAlive replied to thoodhun's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I follow same step and there must be an issue in the default config for the radio found here: https://wiki.sogpf.com/index.php/Radio_Support My solution is to use the one used for Mike force that I found on git on this link: https://github.com/Savage-Game-Design/Mike-Force/blob/f9d52cd12da69084942a927c38dbae0bf129deec/mission/config/artillery.hpp#L1 and copy its content in the description.ext. For me, now it works :) Hope this will help futur people that faces the same issue!