Search the Community
Showing results for tags 'cutter'.
Found 2 results
-
Looking for modeler to help import a vessel (ship)
R.Sparkz posted a topic in ARMA 3 - FIND OR OFFER EDITING
Fellow fellow mod creators, I am currently seeking a modeler who can import a model for me which i have been stuck with for the longest time 😞 . I purchased this big lady (cutter) a while ago however never have had luck finding someone who can import vessels. If anyone is willing to help me out with importing this big lady along with (if its possible) to get the sea wizz to work as well as if theres a possible way to set it so that rotary aircraft can land on the stern pad and “attach” to it so that the ship can be in motion without risk of collison and “flying” away, id be forever greatful. I understand that in this day and age most people dont like doing work simply because they enjoy it. Inorder to provide “motivation” & incentive , i would be willing to set whoever helps me out as joint authors when i upload it to workshop to share with the public for non-commercial use. If you also require some other means of compensation then , ill be more than happy to discuss that. If you’re interested please do not hesitate to contact me here on forums and/or on discord- Roman Sparkz#1436 below are the details of the model: Geometry - Polygon mesh Polygons - 36,680 Vertices- 39,453 Textures - Yes Materials - No UV Mapping- Yes picture of the cutter- looking forward to hearing from someone soon! - Roman -
Download: MIL_Mirror: Dropbox/Armaholic Description: Another pretty basic script, MIL_ClearGrass allows players to create firelanes through grass or to simply clear small patches of grass to give unobstructed observation. "Land_ClutterCutter_small_F" is used to clear the grass, and when clearing patches is spawned 0.5m in front of the player. Features: - AddActions to clear a small patch of grass, or clear a point-to-point line through grass. - Mission designers can choose to enable/disable clearing of both patches and/or firelanes. - Mission designers can also add a required item to be in the player's inventory to be able to clear any grass. To use: - Copy the file MIL_ClearGrass.sqf to your mission folder. - Run the script on clients (from init.sqf or initPlayerLocal.sqf) using: nul = [_availableActions,_itemsRequired] execVM "MIL_ClearGrass.sqf"; - _availableActions - number (optional) - default: 0 - determine what grass clearing option can be used - 0 - both - 1 - clear grass patch - 2 - clear fire lane - _itemsRequired - array of strings (optional) - default: [] - classNames of any items required to clear any grass - Example: nul = [] execVM "MIL_ClearGrass.sqf"; - Players will be able to use both actions without restrictions. nul = [1,["ACE_EntrenchingTool"]] execVM "MIL_CAS.sqf"; - Players will only be able to clear patches of grass any need to have an ACE Entrenching Tool in their inventory. Media: Small demo of clearing some grass for a prone machine gunner (1.00s): Known issues: - Be aware, it can be a bit fiddly sometimes to get the right spot to remove patches of grass. If anyone finds any problems please let me know. Thank you.