diff options
-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; |