diff options
author | Led Mitz <smoothshifter@tuta.io> | 2023-04-28 15:46:47 +0000 |
---|---|---|
committer | Led Mitz <smoothshifter@tuta.io> | 2023-04-28 15:46:47 +0000 |
commit | 1fb004ddbde1b866665ed5dada06a2ef53fb0b06 (patch) | |
tree | 0d295ab7aa65e5f89f31847bfab5cadc5d727508 /world/map/npc/029-2 | |
parent | 5f820f3f033fdda9298ebd555ac5a3eac972289d (diff) | |
download | serverdata-1fb004ddbde1b866665ed5dada06a2ef53fb0b06.tar.gz serverdata-1fb004ddbde1b866665ed5dada06a2ef53fb0b06.tar.bz2 serverdata-1fb004ddbde1b866665ed5dada06a2ef53fb0b06.tar.xz serverdata-1fb004ddbde1b866665ed5dada06a2ef53fb0b06.zip |
Added hint text for alchemy labs
Diffstat (limited to 'world/map/npc/029-2')
-rw-r--r-- | world/map/npc/029-2/morgan.txt | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/world/map/npc/029-2/morgan.txt b/world/map/npc/029-2/morgan.txt index a72bfa1d..48d4133f 100644 --- a/world/map/npc/029-2/morgan.txt +++ b/world/map/npc/029-2/morgan.txt @@ -1,5 +1,5 @@ // Tut mage -// Author: Wushin +// Author: Wushin, Ledmitz // Gains Access to Magic School // See 024-2 clean that shit up // Morgan, liana @@ -29,9 +29,18 @@ OnInit: if(@npc_check) end; if (Int >= 5) - goto L_Learn; + goto L_Welcome; goto L_NotMagic; +L_Welcome: + mes "[Morgan]"; + mes "\"Greetings traveller. What brings you here?\""; + menu + "Maybe magnificent magic?", L_Learn, + "Hello. What's that stuff over there by that shady looking character in the hood?", L_Lab, + "Yikes, I'm in the wrong place for sure.", L_Close, + "Just looking around, thanks.", L_Close; + L_Learn: if (QL_MORGAN == 0) goto L_NotSeen; @@ -45,6 +54,16 @@ L_Learn: goto L_LearningDone; goto L_Close; +L_Lab: + mes "[Morgan]"; + mes "\"I don't know about shady, but Zitoni can be a bit shrewd...\""; + mes "\"He doesn't care to share trade secrets, but I've seen him concocting a few brew, from the side.\""; + mes "\"I can't say of his methods, but I've peered an item or two from over here. Most of his abominations seem to require water.\""; + mes "\"Magic is much less messy and toxic than his art. I couldn't be bothered with all that mashing and smashing of pink petals and mushrooms and such, much less a snake tongue.\""; + mes "\"... of any kind, for that matter. What a mess he makes over there.\""; + mes "\"He may be shrewd and a bit unkempt, but he's generous with his hardware. He'll let anyone use it. Maybe it helps sales. Who knows?\""; + goto L_Close; + L_NotSeen: set QL_MORGAN, 1; mes "[Morgan]"; |