Arma 3
Jonipetteri Jul 9, 2019 @ 12:23am
Fade to black and back
Hi guys!

I'm currently making multiplayer mission. I've made addAction to teleport all players to location x.
I'd like to get a bit more smoother teleport by
1.fading all players screens to black when teleport starts
2.fading all players screens back to normal when teleport is done.

Any help?
< >
Showing 1-6 of 6 comments
U can use cutText and titleText for that
B✪✪tsy Jul 9, 2019 @ 6:23am 
Originally posted by Drgn V4karian:
U can use cutText and titleText for that
Thats the old arma 2 way to do it, arma 3 has a new function with added blur for that, see link.
Jonipetteri Jul 9, 2019 @ 7:59am 
Thanks guys! I’ll give it a shot.
JusTaGamer Jul 12, 2019 @ 12:03pm 
And for more effect you can use Mystical light around the Player:


#makelight
_light = "#lightpoint" createVehicleLocal getpos player;
_light setLightBrightness 0.5;
_light setLightAmbient [1, 0, 1];
_light setLightColor [1, 0, 1];
_light setLightDayLight true;
_light setLightUseFlare true;
_light setLightFlareSize 500;
_light setLightFlareMaxDistance 500;
_light setLightAttenuation [2,4,4,0,9,10];

#lightOFF

deletevehicle _light ;


and: you can use Camshake as Teleport Effect too:

addCamShake [40, 5, 25];
Jonipetteri Jul 14, 2019 @ 8:13pm 
Well, this is something new to me... Interesting. Thanks @FluffiPuffi!
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Jul 9, 2019 @ 12:23am
Posts: 6