mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-07-15 16:14:35 +00:00
PUG password always on option
This commit is contained in:
parent
4d98f57a57
commit
5040f584a2
2 changed files with 6 additions and 1 deletions
|
|
@ -1441,6 +1441,7 @@ $Host::PlayerRespawnTimeout = 60;
|
||||||
$Host::Port = 28000;
|
$Host::Port = 28000;
|
||||||
$Host::PUGautoPassword = 0;
|
$Host::PUGautoPassword = 0;
|
||||||
$Host::PUGPassword = "pickup";
|
$Host::PUGPassword = "pickup";
|
||||||
|
$Host::PUGpasswordAlwaysOn = 0;
|
||||||
$Host::PureServer = 0;
|
$Host::PureServer = 0;
|
||||||
$Host::SCtFProMode = 0;
|
$Host::SCtFProMode = 0;
|
||||||
$Host::ShowEndingPlayerScores = 1;
|
$Host::ShowEndingPlayerScores = 1;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,8 @@
|
||||||
// $Host::PUGautoPassword = 1;
|
// $Host::PUGautoPassword = 1;
|
||||||
// The PUG password you want
|
// The PUG password you want
|
||||||
// $Host::PUGPassword = "pickup";
|
// $Host::PUGPassword = "pickup";
|
||||||
//
|
// PUG Password is always on no matter what
|
||||||
|
// $Host::$PUGpasswordAlwaysOn = 1;
|
||||||
|
|
||||||
package MissionTypeOptions
|
package MissionTypeOptions
|
||||||
{
|
{
|
||||||
|
|
@ -35,6 +36,9 @@ function loadMissionStage2()
|
||||||
$Host::HiVisibility = "1";
|
$Host::HiVisibility = "1";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( $Host::PUGpasswordAlwaysOn )
|
||||||
|
$Host::Password = $Host::PUGPassword;
|
||||||
|
|
||||||
//Start MapRepetitionChecker
|
//Start MapRepetitionChecker
|
||||||
schedule(20000, 0, "MapRepetitionChecker", %game);
|
schedule(20000, 0, "MapRepetitionChecker", %game);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue