diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-07-23 22:56:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-07-23 22:56:42 -0300 |
commit | 5918e4818aafe3122a109688d3aea550129fb1dc (patch) | |
tree | cc5f6c74a9c57b42b8a4b2e42dde9e05842b390c | |
parent | bdd7f5628f0a45f3567e0cd702eaeeea0b7164a5 (diff) | |
download | serverdata-5918e4818aafe3122a109688d3aea550129fb1dc.tar.gz serverdata-5918e4818aafe3122a109688d3aea550129fb1dc.tar.bz2 serverdata-5918e4818aafe3122a109688d3aea550129fb1dc.tar.xz serverdata-5918e4818aafe3122a109688d3aea550129fb1dc.zip |
You're now required to summon the Homunculus to prove your story to King Gelid.
This ensures your first Homunculus will not start at Lv 1.
-rw-r--r-- | npc/024-16/king.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/024-16/king.txt b/npc/024-16/king.txt index f01ac59ec..e63b1d827 100644 --- a/npc/024-16/king.txt +++ b/npc/024-16/king.txt @@ -185,6 +185,12 @@ L_Campaign: end; // fallback L_Report: + // If you haven't summoned yet, or killed it... + if (!gethominfo(0)) { + mesc l("You should summon the Homunculus to show it to the King. Otherwise, your words will not be convincing."), 1; + tutmes l("This can be done in Skills (F5) > H > Summon Homunculus."); + close; + } mesn strcharinfo(0); mesc l("You report to the King about everything you've found and learned there."); next; @@ -219,6 +225,7 @@ L_Report: mesq l("Good luck on your journey!"); // Ref. level 52/24 (almost 100% of exp table) getexp 142750, 3950; + gethomunexp(100); getvaultexp(10); setq General_Narrator, 17, 0, 0; close; |