diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-12-20 18:12:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-12-20 18:12:14 -0300 |
commit | ee725a1a82e8c9efe9da0ab8f52379d0ace06f62 (patch) | |
tree | 6c7456bda26d29a8eb7732d8bb51686ef4c5432d /npc/functions/gmbot.txt | |
parent | a0ff7365b41087741744a6d7588eed4e473b532e (diff) | |
download | serverdata-ee725a1a82e8c9efe9da0ab8f52379d0ace06f62.tar.gz serverdata-ee725a1a82e8c9efe9da0ab8f52379d0ace06f62.tar.bz2 serverdata-ee725a1a82e8c9efe9da0ab8f52379d0ace06f62.tar.xz serverdata-ee725a1a82e8c9efe9da0ab8f52379d0ace06f62.zip |
Doppelganger Challenge: TOP 3 now counted towards Lightbringer
Diffstat (limited to 'npc/functions/gmbot.txt')
-rw-r--r-- | npc/functions/gmbot.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index 7e4bc903c..f85e9bee6 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -174,7 +174,12 @@ function matrixlb { .@cr=limit(0, (.@cr >= 0 ? 3-.@cr : 0), 3); .@pts+=.@cr; - // Max points: 101 + // What about Doppelganger TOP 3? + .@dr=array_find($@udt_name$, strcharinfo(0)); + .@dr=limit(0, (.@dr >= 0 ? 3-.@dr : 0), 3); + .@pts+=.@dr; + + // Max points: 101→104 return .@pts; } |