summaryrefslogtreecommitdiff
path: root/npc/functions/mobpoint.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-10-26 19:21:04 -0300
committerJesusaves <cpntb1@ymail.com>2023-10-26 19:21:04 -0300
commit0266a154728fe9549fed0d7ab8e49977e078faae (patch)
tree1fb84003428a71f8a4fcd09a6e5034a9e0914b78 /npc/functions/mobpoint.txt
parent6cd14661a4db407eb2f468349d7d4a2035858b95 (diff)
downloadserverdata-0266a154728fe9549fed0d7ab8e49977e078faae.tar.gz
serverdata-0266a154728fe9549fed0d7ab8e49977e078faae.tar.bz2
serverdata-0266a154728fe9549fed0d7ab8e49977e078faae.tar.xz
serverdata-0266a154728fe9549fed0d7ab8e49977e078faae.zip
Some extra additional rules and bugfixes for Hardcore Servers
Diffstat (limited to 'npc/functions/mobpoint.txt')
-rw-r--r--npc/functions/mobpoint.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt
index a9084fae8..349bfa011 100644
--- a/npc/functions/mobpoint.txt
+++ b/npc/functions/mobpoint.txt
@@ -46,6 +46,10 @@ function script mobpoint {
if ($EVENT$ == "Rebirth")
.@addval = .@addval * 11 / 10;
+ // Hardcore Server special rules (3× Monster Points)
+ if ($HARDCORE)
+ .@addval *= 3;
+
// Grant you the Monster Points
Mobpt = Mobpt + .@addval;
return;