diff options
author | wushin <pasekei@gmail.com> | 2014-06-23 18:57:52 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-06-25 10:50:14 -0500 |
commit | 623f98ef8f4efa72d6ff7355517b0ace7235ef72 (patch) | |
tree | 033e71b068509c506ee9be57cdebd0d361c65381 /world/map/npc/024-2 | |
parent | 511dc33bfe89c98251579d72ff7f3fa795e29d15 (diff) | |
download | serverdata-623f98ef8f4efa72d6ff7355517b0ace7235ef72.tar.gz serverdata-623f98ef8f4efa72d6ff7355517b0ace7235ef72.tar.bz2 serverdata-623f98ef8f4efa72d6ff7355517b0ace7235ef72.tar.xz serverdata-623f98ef8f4efa72d6ff7355517b0ace7235ef72.zip |
Starting Area Redux
* Tutorial is a quick funnel
* Exits are obvious and open
* New Side Quests
** Valon's Beast Mastery
** Zegas's Barrels
** Magic Wand
* Some Quests stay open after tutorial is done
* House Maggot & Tame Scorpion added
* Made Magic usable for lowbies with Wand
Diffstat (limited to 'world/map/npc/024-2')
-rw-r--r-- | world/map/npc/024-2/barrier.txt | 11 | ||||
-rw-r--r-- | world/map/npc/024-2/tyer.txt | 2 | ||||
-rw-r--r-- | world/map/npc/024-2/tyer_trigger.txt | 18 |
3 files changed, 17 insertions, 14 deletions
diff --git a/world/map/npc/024-2/barrier.txt b/world/map/npc/024-2/barrier.txt index 6b971d1f..4894dad8 100644 --- a/world/map/npc/024-2/barrier.txt +++ b/world/map/npc/024-2/barrier.txt @@ -2,10 +2,15 @@ 024-2.gat,31,24,0|script|#MagicSchoolBarrier1#M|0,1,1, { - if (BaseLevel < 40) goto L_PushBack; - close; + callfunc "MorganState"; + if (@morgan >= 4) + goto L_End; + goto L_PushBack; L_PushBack: warp "024-2.gat", 34, 24; - close; + goto L_End; + +L_End: + end; } diff --git a/world/map/npc/024-2/tyer.txt b/world/map/npc/024-2/tyer.txt index 334c62ad..2b4f8674 100644 --- a/world/map/npc/024-2/tyer.txt +++ b/world/map/npc/024-2/tyer.txt @@ -3,6 +3,6 @@ 024-2.gat,36,21,0|script|Tyer|157, { mes "[Tyer]"; - mes "\"Hello.\""; + mes "\"Hello. Welcome to the Magic Insitute of Tulimshar.\""; close; } diff --git a/world/map/npc/024-2/tyer_trigger.txt b/world/map/npc/024-2/tyer_trigger.txt index 353dea16..45218430 100644 --- a/world/map/npc/024-2/tyer_trigger.txt +++ b/world/map/npc/024-2/tyer_trigger.txt @@ -1,24 +1,22 @@ // A man in the magic school -024-2.gat,33,24,0|script|#Tyer_Trigger|0,1,1, +024-2.gat,33,24,0|script|#Tyer_Trigger|0,0,1, { - if (BaseLevel >= 40) end; + callfunc "MorganState"; + if (@morgan >= 4) + goto L_Close; mes "[Tyer]"; - mes "\"You're still too young to go in there.\""; - next; - + mes "\"You're not allowed to go in there.\""; menu - "What do you mean I'm too young to go in there?", L_Explain, + "What do you mean I'm not allowed to go in there?", L_Explain, "Ah, right.", L_Close; L_Explain: mes "[Tyer]"; - mes "\"The canyon is a dangerous place, so only more experienced people are allowed there.\""; + mes "\"Access to those areas are for students of magic only.\""; next; - - mes "[Tyer]"; - mes "\"That barrier was made to keep those that are too young out.\""; + mes "\"That barrier was made to keep those that are not students out.\""; goto L_Close; L_Close: |