diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/random-talk.txt | 3 | ||||
-rw-r--r-- | npc/functions/util.txt | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/npc/functions/random-talk.txt b/npc/functions/random-talk.txt index 4040b0fae..44fa9b255 100644 --- a/npc/functions/random-talk.txt +++ b/npc/functions/random-talk.txt @@ -182,11 +182,12 @@ function script legiontalk { } function script asleep { - switch(rand2(5)) { + switch(rand2(6)) { case 0: npctalkonce(l("Zzzzzzzzz...")); break; case 1: npctalkonce(l("Rrrr... Pchhhh...")); break; case 2: npctalkonce(l("Ggrmm... Grmmmm...")); break; case 3: npctalkonce(l("Hm... Shhhh...")); break; + case 4: npctalkonce(l("ZZZzzzz...")); break; default: emotion(E_SLEEPY); } end; diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 5f2cfac2d..67d14bbea 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -503,8 +503,12 @@ function script reputation { if (getq(FrostiaQuest_Saevel) >= 2) .@nr=.@nr+1; + // Jhon H's Quest (+1 rep) + if (getq(FrostiaQuest_JohnH) >= 1) + .@nr=.@nr+1; + // FROSTIA Magical Forumula - .@nr=.@nr*100/10; + .@nr=.@nr*100/11; |