Search the Community
Showing results for tags 'cleanup'.
Found 5 results
-
GF Cleanup Script by GEORGE FLOROS [GR] Description: GF Cleanup Script , configurable script. You are free to do anything but i would like to give me Credits for this! Simple and easy to use and adapt . Have Fun ! Installation / Usage: For usage instructions and information of how to use the GF Cleanup Script please refer to the included documentation and/or example mission. Place in your mission the files . There is everything included , in the init.sqf , to copy paste in your mission . https://community.bistudio.com/wiki/SQF_syntax Don't try to open this with the simple notepad. For everything that is with comment // in front or between /* means that it is disabled , so there is no need to delete the extra lines. You can open this ex: with notepad++ https://notepad-plus-plus.org/ and also use the extra pluggins (this way will be better , it will give also some certain colours to be able to detect ex. problems ) http://www.armaholic.com/page.php?id=8680 or use any other program for editing . For the Compilation List of my GF Scripts , you can search in: https://forums.bohemia.net/forums/topic/215850-compilation-list-of-my-gf-scripts/ Notes: Configurable Script. You can select to delete : Particlesource,Dead,Mines,Ruins,Craters, Dropped Items,Static Weapon,Empty Groups, Empty Vehicles,emptyDetector MP triggers. You can exclude certain objects , by adding in the init of the object , in the editor or include in the scripted spawn : this setVariable ["GF_Excude_from_cleanup",true]; It is possible to create an Exclude Zone , by creating a marker. There are already 5 created in the editor as a working example , that you can just copy paste them in your mission. Credits & Thanks: Thanks to All script contributors Thanks to everyone who tries to do the best for this game! Thanks to BIS for such a great platform . Thanks to BIS Community and BIS Community Forums . Thanks to Armaholic Community and Forums . Changelog: v4.0 A lot of code is reedited , added option to exclude certain objects , by setting a variable, added option to create an Exclude Zone , by creating a marker, for more information check the Notes + see ex. mission. Code Performance and optimisation and minor fixes. v3.0 Code Performance and optimisation and minor fixes. v2.0 Added distance parameter added more options and minor changes. v1.0 Forum topic: - Armaholic forums http://www.armaholic.com/forums.php?m=posts&q=39927 Armaholic download GF Cleanup Script
- 41 replies
-
- 12
-
Overview Clean up all dead, dropped stuff, ruins, craters around desired point or entire map and remove empty groups. You need to define at least one parameter position, marker or object. Parameter(s): 0 (Required): STRING - marker name, or ARRAY - position in format [x,y,z] or OBJECT - trigger or any object 1 (Optional): NUMMBER - Radius for dead stuff search around param 0, if not supplied, 500m will be automatically selected. 2 (Optional): NUMMBER - Min distance from object to any player. Preventing player to see disappearing of the object, if not supplied, 300m will be automatically selected. 3 (Optional): NUMMBER - Vehicle damage above which almost wrecked vehicles without crew will be selected to remove it. If not supplied such vehicles stays in game. Value between 0.1 and 0.9 4 (Optional): BOOLEAN - Ability to handle with empty groups - true/false. If not supplied false will be selected (disabled) 5 (Optional): NUMMBER - Sleep time in sec between search if not defined 5 min will be automatically selected. Returns: Nothing To prevent remove some object you need to set an "dnt_remove_me" variable on it using: this setVariable ["dnt_remove_me",true,false] You can adjust default functionality by passing desired parameters. Can be called for one area, many areas using multiple instances, or for entire map at once. Download Google Drive Armaholic Usage Place the script in mission root/scripts directory. Best method is to compile it into a function specially if more instances needed. Usage is also commented at the top of the file. init.sqf : /*Example for whole map: Constantly search entire map with 10min interval. Objects in player range (100m) will be skipped. Almost wrecked vehicles without crew stays in game. */ if (isServer) then { fnc_cleanup = compileFinal preprocessFileLineNumbers "scripts\cleanup.sqf"; null = [ [worldSize/2,worldSize/2,0], worldSize/2, 100, 1200 ] spawn fnc_cleanup; }; init.sqf : /*Example for marker: Constantly search entire marker area with 5min interval. Objects in player range (300m) will be skipped. */ if (isServer) then { fnc_cleanup = compileFinal preprocessFileLineNumbers "scripts\cleanup.sqf"; null = [ "marker0", ((getMarkerSize "marker0") call BIS_fnc_greatestNum) ] spawn fnc_cleanup; }; init.sqf : /*Example for object: Constantly search entire trigger area with 10min interval. Almost wrecked empty vehicles with damage > 0.8 will be removed. Objects in player range (500m) will be skipped. Empty groups will be removed. */ if (isServer) then { fnc_cleanup = compileFinal preprocessFileLineNumbers "scripts\cleanup.sqf"; null = [ _myTrigger, ((triggerArea _myTrigger) call BIS_fnc_greatestNum), 500, 0.8, true, 1200 ] spawn fnc_cleanup; }; cleanup.sqf Changelog 12/25/15 First release. 01/04/16 Version 1.0 * Possibility to adjust functionality. * You can now define objects to delete and define damage threshold for vehicles. * removing empty groups 02/17/16 Version 1.1 Added : * Set persistence for certain object. 13/01/17 Version 1.2 *Changed usage of BIS_fnc_inTrigger to inAreaArray command *Set lazy evaluation for conditions 03.01.2018 Version 1.3 Changed usage to more user friendly way. Added player in area check Known Issues None knew for now. Legal You are allowed to change what you want in this script.
-
GF Blood Stains and SFX LITE Script
GEORGE FLOROS GR posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
GF Blood Stains and SFX LITE Script by GEORGE FLOROS [GR] WARNING!!! This AddOn increases seriously the gore factor in ArmA. It is not recommended for use by children under the age of 15 years. Description: GF Blood Stains and SFX LITE Script , configurable scripts. You are free to do anything but i would like to give me Credits for this! Simple and easy to use and adapt . Have Fun ! Installation / Usage: For usage instructions and information of how to use the GF Blood Stains and SFX Script please refer to the included documentation and/or example mission. Place in your mission the files . There is everything included , in the init.sqf and description.ext , to copy paste in your mission . https://community.bistudio.com/wiki/SQF_syntax Don't try to open this with the simple notepad. For everything that is with comment // in front or between /* means that it is disabled , so there is no need to delete the extra lines. You can open this ex: with notepad++ https://notepad-plus-plus.org/ and also use the extra pluggins (this way will be better , it will give also some certain colours to be able to detect ex. problems ) http://www.armaholic.com/page.php?id=8680 or use any other program for editing . For the Compilation List of my GF Scripts , you can search in: https://forums.bohemia.net/forums/topic/215850-compilation-list-of-my-gf-scripts/ Notes: This is the LITE version of the original Script: GF Blood Stains and SFX Script http://www.armaholic.com/page.php?id=34097 https://forums.bohemia.net/forums/topic/217136-gf-blood-stains-and-sfx-script/ Everything is created as a standalone script , in order to have the possibility , to use also the desired scripts only. 1. GF_Bleeding_LITE script : The Bleeding starts when the health is on 80% , for some random time and amount of Blood. 2. GF_Blood_Pool_LITE script : There is an option for normal size Blood Pools and Large. There is an option to spawn Flies when killed . 3. GF_Blood_Pool_BIS_Blood script This is including the BIS Blood from BIS Orange DLC , when a unit is killed. There is an option to spawn Flies when killed . 4. GF_Blood_shot_LITE script : Blood , for every shot dealt. 5. GF_Particles scripts This is including a Blood particle when bleeding or killed. 6. GF_SFX scripts This is including some custom and game SFX . GF_SFX_Bullet_Impact for the bullet impact at the bodies . GF_SFX_Killed_LITE hear a pain sound when killed . GF_SFX_Screaming for the units when they are getting shot . Credits and Thanks to : Thanks to All script contributors Thanks to everyone who tries to do the best for this game! Thanks to BIS for such a great platform . Thanks to BIS Community and BIS Community Forums . Thanks to Armaholic Community and Forums . Changelog: v1.0 Forum topic: - Armaholic forums http://www.armaholic.com/forums.php?m=posts&q=40157 Armaholic GF Blood Stains and SFX LITE Script -
GF Blood Stains and SFX Script
GEORGE FLOROS GR posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
GF Blood Stains and SFX Script by GEORGE FLOROS [GR] WARNING!!! This AddOn increases seriously the gore factor in ArmA. It is not recommended for use by children under the age of 15 years. Description: GF Blood Stains and SFX Script , configurable scripts. You are free to do anything but i would like to give me Credits for this! Simple and easy to use and adapt . Have Fun ! Installation / Usage: For usage instructions and information of how to use the GF Blood Stains and SFX Script please refer to the included documentation and/or example mission. Place in your mission the files . There is everything included , in the init.sqf and description.ext , to copy paste in your mission . https://community.bistudio.com/wiki/SQF_syntax Don't try to open this with the simple notepad. For everything that is with comment // in front or between /* means that it is disabled , so there is no need to delete the extra lines. You can open this ex: with notepad++ https://notepad-plus-plus.org/ and also use the extra pluggins (this way will be better , it will give also some certain colours to be able to detect ex. problems ) http://www.armaholic.com/page.php?id=8680 or use any other program for editing . For the Compilation List of my GF Scripts , you can search in: https://forums.bohemia.net/forums/topic/215850-compilation-list-of-my-gf-scripts/ Notes: Everything is created as a standalone script , in order to have the possibility , to use also the desired scripts only. 1. GF_Bleeding script : This is including 100 different type of Blood. The Bleeding starts when the health is on 40% , for some random time and amount of Blood. 2. GF_Blood_Pool script : This is including 30 different type of Blood , when a unit is killed. There is an option for normal size Blood Pools and Large. There is an option to spawn Flies when killed . 3. GF_Blood_Pool_BIS_Blood script This is including the BIS Blood from BIS Orange DLC , when a unit is killed. There is an option to spawn Flies when killed . 4. GF_Blood_shot script : This is including 35 different type of Blood , for every shot dealt. 5. GF_Particles script This is including a Blood particle when bleeding or killed. 6. GF_SFX scripts This is including some custom and game SFX . GF_SFX_Bullet_Impact for the bullet impact at the bodies . GF_SFX_Killed hear a pain sound when killed . GF_SFX_Screaming for the units when they are getting shot . Credits & Thanks: Thanks to All script contributors Thanks to everyone who tries to do the best for this game! Thanks to BIS for such a great platform . Thanks to BIS Community and BIS Community Forums . Thanks to Armaholic Community and Forums . Changelog: v.4.0 Updated the included GF Cleanup Script. v.3.0 Code Performance and optimisation, - there was a stuck running the codes in SP and Fps drop Now fixed and several minor fixes. Updated the included GF Cleanup Script. v.2.0 The Known issue , is now fixed, added Custom Scream Sounds for GF_SFX_Screaming, added Lip movement for GF_SFX_Screaming, added more sounds for GF_SFX_Bullet_Impact, added more sounds for GF_SFX_Killed, added an SFX sound for Flies, added some extra options, code optimisation and minor fixes. v1.0 Forum topic: - Armaholic forums http://www.armaholic.com/forums.php?m=posts&q=40082 Armaholic GF Blood Stains and SFX Script- 44 replies
-
- 11
-
Forced Init to Virtual Arsenal - And Other Things
mikemhz posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I want to start a mission straight into the virtual arsenal. I'm creating a story-based mission and I want the player to create his/her character before it all begins. I don't want the player to look at a box and select the aresenal. I want them to spawn into the arsenal, one time only. I also want to: pause the scripted events at the mission start while the player is in the arsenal. give the player objectives and waypoints. display text on screen and dialogue from NPCs. speak to NPCs, conversation wheels, which trigger events such as spawning, objectives and waypoints. delete unwated NPCs and objects. Its been a few years since I worked with ArmA. Could somebody point me in the right direction?- 5 replies
-
- pause events
- arsenal
- (and 8 more)