Hallo,
Ich habe ein kleines Problem:
ich habe das Intro von Nox eingefügt, und jetzt kommt beim Spawnen erst die Welcome Notification und in der gleichen Zeit das Intro.
Ich möchte aber, dass der Dialog erst dann geöffnet wird, wenn das Intro fertig ist.
Code: dialog/funcitons/fn_spawnConfirm.sqf
[] spawn {
cutText ["","BLACK IN"];
private["_handle"];
_handle = [] spawn life_fnc_initIntro;
waitUntil {scriptDone _handle};
life_firstSpawn = false;
};
sleep 20;
if (life_firstSpawn) then {
[] call life_fnc_welcomeNotification;
};
[] call life_fnc_playerSkins;
[] call life_fnc_hudSetup;
Alles anzeigen
Ich habe es so versucht zu lösen, klappt aber nicht.
Das Sleep klappt nicht.
Könnt Ihr mir helfen?
Mit freundlichem Gruß
Leon K. // Sergej