mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
Adjustable item respawn time
Ability to set item respawn time from serverPrefs
This commit is contained in:
parent
f2b905885c
commit
f7e2ffca04
|
|
@ -100,6 +100,7 @@ $Host::holoName4 = "DSword";
|
|||
$Host::holoName5 = "BloodEagle";
|
||||
$Host::holoName6 = "Harbinger";
|
||||
$Host::Info = " ";
|
||||
$Host::ItemRespawnTime = 30;
|
||||
$Host::KickBanTime = 600;
|
||||
$Host::KickObserverTimeout = 1200;
|
||||
$Host::LakRabbitDuelMode = 0;
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
$ItemRespawnTime = 30000;
|
||||
$ItemRespawnTime = $Host::ItemRespawnTime * 1000;
|
||||
$ItemPopTime = 30 * 1000; // 30 seconds
|
||||
|
||||
$WeaponSlot = 0;
|
||||
|
|
|
|||
|
|
@ -192,6 +192,7 @@ $Host::NoBaseRapePlayerCount = 14;
|
|||
$Host::AveragePings = 1;
|
||||
$Host::GuidCheck = 1;
|
||||
$Host::MinFlagRecordPlayerCount = 6;
|
||||
$Host::ItemRespawnTime = 30;
|
||||
|
||||
//LakRabbit
|
||||
$Host::LakRabbitUnlimitedDJ = 1; //Unlimited disc-jumps if enabled
|
||||
|
|
|
|||
Loading…
Reference in a new issue