diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-12-15 17:52:56 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-12-15 22:30:14 +0100 |
commit | d8af47c0cd4cbe564322917593448626214a0be2 (patch) | |
tree | 0ed35746712baa1b2781a2469b49927374a6a6d7 | |
parent | 6e9c5f486f31504172fcb449c3a89b716463442f (diff) | |
download | serverdata-d8af47c0cd4cbe564322917593448626214a0be2.tar.gz serverdata-d8af47c0cd4cbe564322917593448626214a0be2.tar.bz2 serverdata-d8af47c0cd4cbe564322917593448626214a0be2.tar.xz serverdata-d8af47c0cd4cbe564322917593448626214a0be2.zip |
Magic Notes: replacing the warp to snake pit with warp to snow area, three possible destinations
-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; } |