-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
loading pic, start hints, briefing, disableremotesensors
- added pvp optimize command `disableremotesensors true` - added new loading pic with logo - added start hint system forcing players into map (though giving the a 3 second chance to opt out) - added first part of briefing showing set parameter time
- Loading branch information
Showing
12 changed files
with
84 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// Create Diary Record - HINWEISE - | ||
player createDiaryRecord ["Diary", ["Mission",localize "str_GRAD_briefing"]]; | ||
_minutes = str (POINTS_NEEDED_FOR_VICTORY/60); | ||
player createDiaryRecord ["Diary", ["Mission",localize "str_GRAD_briefing" + " " + _minutes + " min."]]; | ||
|
||
player createDiaryRecord ["Diary", ["Story",localize "str_GRAD_story"]]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
if (!OPFOR_TELEPORTED && (_this select 0 == east)) exitWith { | ||
if (player == opfor_teamlead) then { | ||
titleCut ["Mission Setup", "BLACK", 999]; | ||
0 = createDialog "gui_spawn_opfor"; | ||
waitUntil {dialog}; | ||
titleCut ["Mission Setup", "BLACK", 999]; | ||
[] call checkSpawnButton; | ||
} else { | ||
titleCut ["Mission Setup", "BLACK", 999]; | ||
0 = createDialog "gui_spawn_waitplease"; | ||
titleCut ["Mission Setup", "BLACK", 999]; | ||
waitUntil {BLUFOR_TELEPORTED}; | ||
cutText ["", "BLACK IN", 1]; | ||
openMap [true,false]; | ||
cutRsc ["gui_opfor_pleasewait","PLAIN",0]; | ||
waitUntil {!visibleMap}; | ||
if (OPFOR_TELEPORT_TARGET select 0 != 0) exitWith {}; | ||
hintsilent "Please dont move. Showing map..."; | ||
sleep 3; | ||
if (BLUFOR_TELEPORT_TARGET select 0 != 0) exitWith {}; | ||
[] call checkSpawnButton; | ||
}; | ||
}; | ||
|
||
if (!BLUFOR_TELEPORTED && (_this select 0 == west)) exitWith { | ||
titleCut ["Mission Setup", "BLACK", 999]; | ||
0 = createDialog "gui_spawn_waitplease"; | ||
waitUntil {dialog}; | ||
if (BLUFOR_TELEPORTED) exitWith {cutText ["", "BLACK IN", 1];}; | ||
titleCut ["Mission Setup", "BLACK", 999]; | ||
openMap [true,false]; | ||
cutRsc ["gui_blufor_pleasewait","PLAIN",0]; | ||
waitUntil {!visibleMap}; | ||
if (BLUFOR_TELEPORT_TARGET select 0 != 0) exitWith {}; | ||
hintsilent "Please dont move. Showing map..."; | ||
sleep 3; | ||
if (BLUFOR_TELEPORT_TARGET select 0 != 0) exitWith {}; | ||
[] call checkSpawnButton; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters