I know intro's in MP are treated differently than SP, but I was wondering if there was a way off adding code to have the option of "skipping" the intro (cutscene), which could be selected at the server set up screen.
Ie.
in the Description file:
titleParam1 = "Skip Intro:";
valuesParam1[] = {1,2};
defValueParam1 = 1;
textsParam1[] = {"No","Yes"};
in the init.sqs file:
?(Param1 == 1) : goto "No"
?(Param2 == 2) : goto "Yes"
#No
Perform No action
goto "SkipIntroSet"
#Yes
Insert code to Skip Intro cutscene?goto "SkipIntroSet"
I know how to set up the menu box in the server screen, but not sure of the best approach to be able to "skip" the cutscene
Any ideas?