diff options
author | Led Mitz <smoothshifter@tuta.io> | 2023-04-30 18:31:46 +0000 |
---|---|---|
committer | Led Mitz <smoothshifter@tuta.io> | 2023-04-30 18:31:46 +0000 |
commit | abb20c6dee333483378d8825d433d09a57998e5c (patch) | |
tree | 2519a8637a826372e87b20f070a3c09d12432efe | |
parent | e163a5ac6013f2f35354acbb8905a45f9284a9d7 (diff) | |
download | serverdata-abb20c6dee333483378d8825d433d09a57998e5c.tar.gz serverdata-abb20c6dee333483378d8825d433d09a57998e5c.tar.bz2 serverdata-abb20c6dee333483378d8825d433d09a57998e5c.tar.xz serverdata-abb20c6dee333483378d8825d433d09a57998e5c.zip |
Morgan correction
m--------- | client-data | 0 | ||||
-rw-r--r-- | world/map/npc/029-2/morgan.txt | 11 |
2 files changed, 7 insertions, 4 deletions
diff --git a/client-data b/client-data -Subproject 4901f5c5e7879b529f2bdba6455fd5317812efd +Subproject 22e2ed11665d41f5a2e25bc48a14c3f6097c57f 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; |