mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-20 00:24:49 +00:00
MapChange Centerprint Message
Centerprint between mapchanges
This commit is contained in:
parent
905cf7ae44
commit
2e4b832642
|
|
@ -13,6 +13,7 @@ $Host::AllowPlayerVoteSkipMission = 1;
|
|||
$Host::AllowPlayerVoteTeamDamage = 0;
|
||||
$Host::AllowPlayerVoteTimeLimit = 1;
|
||||
$Host::AllowPlayerVoteTournamentMode = 0;
|
||||
$Host::AllowPlayerTournamentModeVotekick = 0;
|
||||
$Host::AnimateWithTransitions = 1;
|
||||
$Host::AntiPackEnable = 1;
|
||||
$Host::AntiPackPlayerCount = 6;
|
||||
|
|
@ -139,6 +140,8 @@ $Host::LoadScreenShowLogo = 0;
|
|||
$Host::LoadScreenShowLogoName = "dpub/DPUB_logo";
|
||||
$Host::LogIntentionalQuit = 1;
|
||||
$Host::Map = "VaubanLak";
|
||||
$Host::MapChangeMSG = 0;
|
||||
$Host::MapChangeMSGContent = "<color:3cb4b4><font:Sui Generis:22>Pickup Night\n<color:3cb4b4><font:Univers:18>Saturday, March 5th\n<color:3cb4b4><font:Univers:16>Join discord for details";
|
||||
$Host::MarkDnDObjectives = 1;
|
||||
$Host::MaxBotDifficulty = 0;
|
||||
$Host::MaxMessageLen = 140;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@
|
|||
// $Host::PUGPassword = "pickup";
|
||||
// PUG Password is always on no matter what
|
||||
// $Host::$PUGpasswordAlwaysOn = 1;
|
||||
// Enable a center print between map changes
|
||||
// $Host::MapChangeMSG = 0;
|
||||
// Message Content
|
||||
// $Host::MapChangeMSGContent = "<color:3cb4b4><font:Sui Generis:22>Pickup Night\n<color:3cb4b4><font:Univers:18>Saturday, March 5th\n<color:3cb4b4><font:Univers:16>Join discord for details";
|
||||
|
||||
package MissionTypeOptions
|
||||
{
|
||||
|
|
@ -62,6 +66,9 @@ function loadMissionStage2()
|
|||
deactivatePackage(LockedTeams);
|
||||
|
||||
parent::loadMissionStage2();
|
||||
|
||||
if($Host::MapChangeMSG)
|
||||
centerPrintAll($Host::MapChangeMSGContent, 12, 3);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -186,8 +186,9 @@ $Host::AllowAdminVotes = 1;
|
|||
$Host::AllowPlayerVoteChangeMission = 1;
|
||||
$Host::AllowPlayerVoteSkipMission = 1;
|
||||
$Host::AllowPlayerVoteTimeLimit = 1;
|
||||
$Host::AllowPlayerVoteTournamentMode = 0;
|
||||
$Host::AllowPlayerVoteTeamDamage = 0;
|
||||
$Host::AllowPlayerVoteTournamentMode = 1;
|
||||
$Host::AllowPlayerVoteTeamDamage = 1;
|
||||
$Host::AllowPlayerTournamentModeVotekick = 1;
|
||||
$Host::NoBaseRapeEnabled = 1; //Enable or Disable No Base Rape
|
||||
$Host::NoBaseRapePlayerCount = 14; //Min number players the turn off No Base Rape
|
||||
$Host::AveragePings = 1; //Show Average ping in F2 menu
|
||||
|
|
@ -209,6 +210,8 @@ $Host::ClassicDailyHardRestart = 0;
|
|||
$Host::ClassicDailyHardRestartTime = "10\t00\tam"; //Hard Restart Server Time Ex:10am
|
||||
$Host::LoadScreenShowLogo = 0; //Special Logo on LoadScreen
|
||||
$Host::LoadScreenShowLogoName = "dpub/DPUB_logo"; //Logo location Filename
|
||||
$Host::MapChangeMSG = 0; //Center Print between mapchanges
|
||||
$Host::MapChangeMSGContent = "<color:3cb4b4><font:Sui Generis:22>Pickup Night\n<color:3cb4b4><font:Univers:16>Saturday, March 5th\n<color:3cb4b4><font:Univers:16>Join discord for details";
|
||||
|
||||
//LakRabbit
|
||||
$Host::LakRabbitUnlimitedDJ = 1; //Unlimited disc-jumps if enabled
|
||||
|
|
|
|||
Loading…
Reference in a new issue