summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-12-14 19:52:23 -0300
committerJesusaves <cpntb1@ymail.com>2023-12-14 19:52:23 -0300
commit6d81eb2823995b33f818b1ceec5d0f6957f0192d (patch)
tree51b4eff9a6235617991dd84cfa3cb5ada34a44d0
parent2f60556bc30b6e56c678fe4d2f07a136e83167a2 (diff)
downloadserverdata-6d81eb2823995b33f818b1ceec5d0f6957f0192d.tar.gz
serverdata-6d81eb2823995b33f818b1ceec5d0f6957f0192d.tar.bz2
serverdata-6d81eb2823995b33f818b1ceec5d0f6957f0192d.tar.xz
serverdata-6d81eb2823995b33f818b1ceec5d0f6957f0192d.zip
Update contributor list and picklog retention rules.
-rw-r--r--npc/003-3/malindou.txt12
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt
index d267120f4..23038a588 100644
--- a/npc/003-3/malindou.txt
+++ b/npc/003-3/malindou.txt
@@ -671,7 +671,6 @@ OnInit:
DelChrRegFromEveryPlayer("FMOLY_FRIEND");
}
-
// This mensures Contributors Credits, and changes only during updates.
// All names in lower case. Only TMW2 direct work! Non-TMW2 contributors
// should be disregarded if they're not involved with the project.
@@ -688,9 +687,10 @@ OnInit:
htput($@CONTRIBUTORS, "jesusalva", 250);
htput($@CONTRIBUTORS, "saulc", 250);
htput($@CONTRIBUTORS, "lawncable", 180);
+ htput($@CONTRIBUTORS, "ThinkSome", 75);
htput($@CONTRIBUTORS, "crazyfefe", 70);
htput($@CONTRIBUTORS, "mishana", 70);
- htput($@CONTRIBUTORS, "esteria", 60);
+ htput($@CONTRIBUTORS, "esteria", 70);
htput($@CONTRIBUTORS, "arthur", 50);
htput($@CONTRIBUTORS, "rakinorf", 40);
htput($@CONTRIBUTORS, "dangerduck", 40);
@@ -698,28 +698,30 @@ OnInit:
htput($@CONTRIBUTORS, "xanofire", 32);
htput($@CONTRIBUTORS, "kolchak", 30);
htput($@CONTRIBUTORS, "jak1", 30);
+ htput($@CONTRIBUTORS, "HoraK", 20);
htput($@CONTRIBUTORS, "dustman", 18);
htput($@CONTRIBUTORS, "povo", 10);
+ htput($@CONTRIBUTORS, "Manatauro", 10);
htput($@CONTRIBUTORS, "minegamerbr", 10);
htput($@CONTRIBUTORS, "yuckfou", 10);
htput($@CONTRIBUTORS, "kytty", 10);
htput($@CONTRIBUTORS, "ledmitz", 10);
- htput($@CONTRIBUTORS, "ThinkSome", 6);
+ htput($@CONTRIBUTORS, "TestUser", 10);
htput($@CONTRIBUTORS, "liangtai", 4);
htput($@CONTRIBUTORS, "demure", 2);
htput($@CONTRIBUTORS, "seeds", 2);
htput($@CONTRIBUTORS, "lilanna", 1);
- htput($@CONTRIBUTORS, "manatauro reborn", 10);
htput($@CONTRIBUTORS, "hocus pocus fidibus", 40);
htput($@CONTRIBUTORS, "cadis etrama di raizel", 20);
//htput($@CONTRIBUTORS, "", 1);
end;
+// Maintain only 7 days of chatlog and 2 months of picklog
OnClock0500:
if (gettime(GETTIME_DAYOFMONTH) >= 7)
query_sql("DELETE FROM `chatlog` WHERE `time` < '"+sqldate(-7)+"'");
- query_sql("DELETE FROM `picklog` WHERE `time` < '"+sqldate(0, -3)+"'");
+ query_sql("DELETE FROM `picklog` WHERE `time` < '"+sqldate(0, -2)+"'");
// Remove overhead from picklog
if (gettime(GETTIME_DAYOFMONTH) == 14)
query_sql("OPTIMIZE TABLE `picklog`");