diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/gmbot.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index 1b70d1cb3..cbcd79917 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -232,9 +232,15 @@ function matrixlb { .@pts+=min(3, reputation("Fortress")/33); // What about Lilit? - // Temporaly I'll use Candor Battle Top 3 - .@cr=array_find($@cfefe_name$, strcharinfo(0)); - .@cr=limit(0, (.@cr >= 0 ? 3-.@cr : 0), 3); + // Having accomplished deeds + .@cr=0; + .@cr+=(YETIKING_WINNER ? 1 : 0); + .@cr+=(HEROESHOLD_WINNER ? 1 : 0); + .@cr+=(QUIRINO_WINNER ? 1 : 0); + .@cr+=(GEMINI_WINNER ? 1 : 0); + .@cr+=(GHQ_WINNER ? 1 : 0); + .@cr+=(FORT_1ST_VISIT ? 1 : 0); + .@cr=limit(0, .@cr / 2, 3); .@pts+=.@cr; // What about Doppelganger TOP 3? |