diff options
author | Led Mitz <smoothshifter@tuta.io> | 2023-04-30 18:31:46 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-05-20 15:34:25 -0300 |
commit | 688f5b03cd89a5636c1c8832cd9a92469b21ff4e (patch) | |
tree | 43fef2ee968de3655e3585af1c9b31426217ad60 | |
parent | 3fe093eb265e4501120b81d27315f46b468e1503 (diff) | |
download | serverdata-688f5b03cd89a5636c1c8832cd9a92469b21ff4e.tar.gz serverdata-688f5b03cd89a5636c1c8832cd9a92469b21ff4e.tar.bz2 serverdata-688f5b03cd89a5636c1c8832cd9a92469b21ff4e.tar.xz serverdata-688f5b03cd89a5636c1c8832cd9a92469b21ff4e.zip |
Morgan correction
-rw-r--r-- | world/map/npc/029-2/morgan.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/world/map/npc/029-2/morgan.txt b/world/map/npc/029-2/morgan.txt index 48d4133f..7c09fd1d 100644 --- a/world/map/npc/029-2/morgan.txt +++ b/world/map/npc/029-2/morgan.txt @@ -28,19 +28,22 @@ OnInit: callfunc "PCtoNPCRange"; if(@npc_check) end; - if (Int >= 5) - goto L_Welcome; - goto L_NotMagic; + goto L_Welcome; L_Welcome: mes "[Morgan]"; mes "\"Greetings traveller. What brings you here?\""; menu - "Maybe magnificent magic?", L_Learn, + "Maybe magnificent magic?", L_IntCheck, "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_IntCheck: + if (Int >= 5) + goto L_Learn; + goto L_NotMagic; + L_Learn: if (QL_MORGAN == 0) goto L_NotSeen; |