Arma 3
110 ratings
LEAKS SFX DEMO
   
Award
Favorite
Favorited
Unfavorite
Data Type: Scenario
Scenario Gameplay: Singleplayer, Multiplayer, Coop
Scenario Map: Altis
Tags: Tag Review
File Size
Posted
3.437 MB
26 Jul, 2018 @ 7:40am
1 Change Note ( view )

Subscribe to download
LEAKS SFX DEMO

In 1 collection by ALIAScartoons
ARMA 3 SCRIPTS AND DEMO MISSIONS
52 items
Description
If you like this script don't forget to rate, share or provide feed-back. Thank you!


With this script you can create:
- gas/steam leaks
- fire leaks/bursts
- water leak for exterior
- cave leaks

Note
* Demo mission on ALTIS.
* Tested partially on dedicated
* Un-pbo or Un-zip the mission and read the comments or watch the video tutorial for more information.

Direct Download link:
https://aliascartoons.com/

If you like my work and want to support:



For those who prefer to donate via PayPal here it is the link
[www.paypal.com]

My Patreon Page:
https://www.patreon.com/aliascartoons

My Twitter account
https://twitter.com/ALIAScartoons

Other Scripts
http://steamproxy.net/sharedfiles/filedetails/?id=1123074587

DO NOT INCORPORATE THIS SCRIPT OR PORTIONS OF IT IN MONETIZED PRODUCTS OR SERVERS WITHOUT ASKING FOR PERMISSION AND OBTAINING APPROVAL FROM ME!!!
47 Comments
ALIAScartoons  [author] 11 Sep, 2023 @ 5:21am 
@Lamp128
I don't remember how i've named the variable maybe is factor or something that i multiply with the particle speed, adjust that value until you get the desired result. Might be useful to use other particles too which fit better the size, speed and lifetime of your effect
Lamp128 10 Sep, 2023 @ 11:57am 
@ALIAScartoons
Length, just a larger stream of fire, sim a massive fuel leak. I've messed with the life time, and I think I can increase that enough to where if I can make the particles travel slower I should be able to get what I want. I've just been having trouble figuring out how to slow the particles down.
ALIAScartoons  [author] 8 Sep, 2023 @ 5:57am 
@Lamp128
You want to make them bigger in what way? In length or width? If is in length you need increase the life time for particles as for width look into the scale parameter of the particle
Lamp128 5 Sep, 2023 @ 10:27am 
Hey I'm trying to edit this and make the fire leak significantly bigger, only issue i'm running into is particle speed. What would i need to edit to decrease it? looking through setParticleParams i see a few values but they don't seem to do anything and I don't quite understand your array for moveVelocity.
Any input?
ALIAScartoons  [author] 15 May, 2019 @ 6:40am 
@CartoonBOY
You could use a loop, first you need all objects(names) you wanna use in an array then run the script for each element of the array in a loop(which runs only once), this way you don't need to mess with the script's syntax
CartoonrBOY 15 May, 2019 @ 5:56am 
I love this stuff - How would I make multiple water leaks on a MP server? I don't want to replicate the code over and over. Would I just use the variable _leak_obj as a single map addition?

Water_leaks.sqf: (create objects)

if (!isServer) exitWith {};
rain_leak = "Land_HelipadEmpty_F" createVehicle [8199.89, 10697.8, 18.7564];
rain_leak setVectorDirAndUp [[0, 1, 0], [0, 0, 1]];
rain_leak enableSimulationGlobal true;

rain_leak2 = "Land_HelipadEmpty_F" createVehicle [8198.89, 10698.8, 14.7564];
rain_leak2 setVectorDirAndUp [[0, 1, 0], [0, 0, 1]];
rain_leak2 enableSimulationGlobal true;

null=[rain_leak,rain_leak2] execvm "AL_Leaks\water_leak.sqf";
diag_log "RAINleaks - loaded";

Water_leak.sqf: (your script)

if (!isServer) exitWith {};
_leak_obj = _this select 0;
if (!isNil {_leak_obj getVariable "is_ON"}) exitWith {};
_leak_obj setVariable ["is_ON",true,true];
[[_leak_obj],"AL_Leaks\water_leak_sfx.sqf"] remoteExec ["execvm",0,true];
flurry 1 Apr, 2019 @ 2:45pm 
@ALIAScartoons Excellent, thank you! I'm trying to switch off fire leaks assigned to two objects. The fire leaks are acting as a gate to stop the player from progressing too far ahead.
ALIAScartoons  [author] 31 Mar, 2019 @ 11:34am 
@flurry
I will have a look, i don't remember how i dealt with them. What effect you trying to switch off?
flurry 31 Mar, 2019 @ 3:53am 
Is there a way to turn off the effect after trigger event? deleteVehicle throws up a few errors when deleting the source object. Really awesome script otherwise.
ALIAScartoons  [author] 9 Mar, 2019 @ 10:29am 
@Tin Can
For damage see where i check for distance between player an the object you use for leak