diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-02-05 06:03:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-02-05 06:03:08 -0300 |
commit | 3acfc3ab2250b821f520c9db2687b90290f26921 (patch) | |
tree | 170462112d6d457cffd7cd1b21c7abdc5b8c12fb /npc/025-1/commander.txt | |
parent | e291c2f3c6adc0f730853db6ff65afc0d3690b93 (diff) | |
download | serverdata-3acfc3ab2250b821f520c9db2687b90290f26921.tar.gz serverdata-3acfc3ab2250b821f520c9db2687b90290f26921.tar.bz2 serverdata-3acfc3ab2250b821f520c9db2687b90290f26921.tar.xz serverdata-3acfc3ab2250b821f520c9db2687b90290f26921.zip |
Fix typo where Cadis always said you were killing slimes (regardless of truth)
Diffstat (limited to 'npc/025-1/commander.txt')
-rw-r--r-- | npc/025-1/commander.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/025-1/commander.txt b/npc/025-1/commander.txt index 7d4afb35b..52b01c846 100644 --- a/npc/025-1/commander.txt +++ b/npc/025-1/commander.txt @@ -104,22 +104,22 @@ OnInit: close; L_SlimeHunter: - cadisReward(FortressQuest_SlimeHunter); + cadisReward(FortressQuest_SlimeHunter, l("Slimes")); close; L_Over100: - cadisReward(FortressQuest_Over100); + cadisReward(FortressQuest_Over100, l("over 100 mobs")); close; L_RangedHunt: - cadisReward(FortressQuest_RangedHunt); + cadisReward(FortressQuest_RangedHunt, l("ranged mobs")); close; function cadisReward { .@kill=getq2(getarg(0)); .@rewa=getq3(getarg(0)); mesn; - mesq l("Thus far you've slain %s/%s %s for me!", fnum(.@kill), fnum(.million), b(l("Slimes"))); + mesq l("Thus far you've slain %s/%s %s for me!", fnum(.@kill), fnum(.million), b(getarg(1, "monsters"))); inventoryplace NPCEyes, 4, Iten, 2; // ***** ***** ***** Rewards ***** ***** ***** |