Browse Source

changed default player idle and expire time

master
poikilos 9 years ago
committed by Jacob Gustafson
parent
commit
c1ed411d6f
  1. 4
      README.md
  2. 4
      web/chunkymap.php

4
README.md

@ -11,8 +11,8 @@ This program comes without any warranty, to the extent permitted by applicable l
* Zoom in and out
* optionally echo name of world that was detected by the scheduled py file
* shows player location (and only first 2 characters of name, for privacy; there is no saved setting yet, so to adjust, you must change the value of $nonprivate_name_beginning_char_count in chunkymap.php)
* Ghost players if they stay in one spot 2 minutes (consider them logged out by that method alone since not requiring mods; see $player_file_age_idle_max_seconds in chunkymap.php)
* Hide players if they stay in one spot 5 minutes (consider them logged out by that method alone since not requiring mods; see $player_file_age_expired_max_seconds in chunkymap.php)
* Ghost players if they stay in one spot long enough (see $player_file_age_idle_max_seconds in chunkymap.php)
* Hide players if they stay in one spot long enough (see $player_file_age_expired_max_seconds in chunkymap.php) avoiding logout detection, and not requiring mods
* Has optional script to add crontab entry (to schedule update script every minute that runs the py file unless the py file is not complete [took longer than 1 minute])

4
web/chunkymap.php

@ -397,8 +397,8 @@ function echo_chunkymap_table() {
$zoomed_h=(int)((float)$chunkymap_tile_original_h*$scale+.5);
$genresult_suffix_then_dot_then_ext="_mapper_result.txt";
$dot_yaml=".yml";
$player_file_age_expired_max_seconds=299;
$player_file_age_idle_max_seconds=119;
$player_file_age_expired_max_seconds=10*60-1;
$player_file_age_idle_max_seconds=2*60-1;
while ($z >= $chunkz_min) {
echo_hold( " <tr>\r\n");
$x = (int)$chunkx_min;

Loading…
Cancel
Save