MapChange Centerprint Message

Centerprint between mapchanges
This commit is contained in:
ChocoTaco 2022-03-07 14:08:41 -05:00
parent 905cf7ae44
commit 2e4b832642
3 changed files with 15 additions and 2 deletions

View file

@ -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);
}
};