diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/gmbot.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index 56d62a937..d008f9a7c 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -16,7 +16,10 @@ L_Today: .@q=getq(General_Narrator); // Prologue missed - straight refusal if (.@q < 19) { - npctalk3 l("The sword glows too much. Perhaps @@ could take it.", $MOST_HEROIC$); + if (strcharinfo(0) != $MOST_HEROIC$) + npctalk3 l("The sword glows too much. Perhaps @@ could take it.", $MOST_HEROIC$); + else + npctalk3 l("I'm not going to touch a FLOATING sword made of unobtainum without at least knowing a bit more about it."); end; } // Determine if you are worthy (from 0 to 101) |