diff options
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/013-2/notes.txt | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/world/map/npc/013-2/notes.txt b/world/map/npc/013-2/notes.txt index 92417ac4..c2421015 100644 --- a/world/map/npc/013-2/notes.txt +++ b/world/map/npc/013-2/notes.txt @@ -62,13 +62,33 @@ L_cheat: close; } -// Warp to snake pit +// Warp to snow area 013-2.gat,25,27,0|script|Spell|127,{ - mes "You read: \"Slithering and scales make a poisonous bite - Where you go fills me with fright!\""; + mes "You read: \"Snow-white flakes and eminent frost - I'll go there, whatever the cost!\""; next; mes "You feel yourself getting lighter..."; next; - warp "005-3.gat",86,33; + set @dest, rand(BaseLevel); + if (@dest < 10) + goto L_FriendlyPlace; + if ((@dest >= 10) && (@dest <= 50)) + goto L_DeepCave; + goto L_Cave; + +L_FriendlyPlace: + warp "019-3.gat",102,77; + goto L_Close; + +L_DeepCave: + warp "031-3.gat",135,163; + goto L_Close; + +L_Cave: + warp "031-3.gat",37,213; + goto L_Close; + +L_Close: + set @dest, 0; close; } |