diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-11 12:22:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-11 12:22:47 -0300 |
commit | ab800498d595b5b6db920ef79e1227a60af28739 (patch) | |
tree | 82766bdb2dcd883e824bcdf8cf43d99fbfbe0616 /npc/functions/gmbot.txt | |
parent | 5f2182aa6cc953052f7d0e5993b640dfc70c5db6 (diff) | |
download | serverdata-ab800498d595b5b6db920ef79e1227a60af28739.tar.gz serverdata-ab800498d595b5b6db920ef79e1227a60af28739.tar.bz2 serverdata-ab800498d595b5b6db920ef79e1227a60af28739.tar.xz serverdata-ab800498d595b5b6db920ef79e1227a60af28739.zip |
Special behavior in Lightbringer if you are the world hero
Diffstat (limited to 'npc/functions/gmbot.txt')
-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) |