Skip to content

Konfiguration

Moritz Schmidt edited this page Feb 28, 2023 · 7 revisions

Play on Start, sorgt dafür das beim Missionsstart das Intro abgespielt wird.

GRAD_introCam_playOnStart = true;

Alternativ kann mann das Intro händisch triggern durch diesen befehl:

[GRAD_introCam_shotDefinitions, false] remoteExec ["GRAD_introCam_fnc_play", [0,-2] select isDedicated, false];

Allow for JIP, spielt das Intro auch für Spieler die nachjoinen ab.

GRAD_introCam_allowForJIP = false;

Shot Definitions, in diesem Array werden die Shots definiert.

GRAD_introCam_shotDefinitions = [];

Bsp:

GRAD_introCam_shotDefinitions = [  
	["CAMERA", 3, camPos_01, camTarget_01, 1, true, true, 2],   
	["MOVE", 5, camPos_01, camTarget_02], 
	["BLEND", 10, ["DYNAMIC", "<t color='#ff0000' size = '.8'>OMG, some Text</t>",-1,-1,6,1,1], 1, 3], 
	["MOVE", 7, camPos_02, camTarget_02, nil, nil, 4], 
	["MOVE", 30, camPos_03, car_01, 0.01, nil, 20], 
	["BLEND", 5, [], 1, 3, 4], 
	["ATTACH", 15, car_01, car_01, 1, [0, -8, 3]], 
	["BLEND", 5, [], 1, 3, 3], 
	["ROTATE", 15, ace_player, 25, 20, 90, 270, true], 
	["BLEND", 5, [], 0, 3, 4] 
];