Arma 3
111 人が評価
LEAKS SFX DEMO
   
アワード
お気に入り
お気に入り
お気に入りから削除
Data Type: Scenario
Scenario Gameplay: Singleplayer, Multiplayer, Coop
Scenario Map: Altis
タグ: Tag Review
ファイルサイズ
投稿日
3.437 MB
2018年7月26日 7時40分
1 項目の変更履歴 ( 表示 )

サブスクライブしてダウンロード
LEAKS SFX DEMO

ALIAScartoons 作成の 1 件のコレクション
ARMA 3 SCRIPTS AND DEMO MISSIONS
52 アイテム
解説
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 件のコメント
ALIAScartoons  [作成者] 2023年9月11日 5時21分 
@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 2023年9月10日 11時57分 
@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  [作成者] 2023年9月8日 5時57分 
@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 2023年9月5日 10時27分 
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  [作成者] 2019年5月15日 6時40分 
@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 2019年5月15日 5時56分 
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 2019年4月1日 14時45分 
@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  [作成者] 2019年3月31日 11時34分 
@flurry
I will have a look, i don't remember how i dealt with them. What effect you trying to switch off?
flurry 2019年3月31日 3時53分 
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  [作成者] 2019年3月9日 10時29分 
@Tin Can
For damage see where i check for distance between player an the object you use for leak