diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
commit | cf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch) | |
tree | f9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/011-4/bl_barrier.txt | |
parent | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff) | |
download | serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2 serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip |
Override
Diffstat (limited to 'npc/011-4/bl_barrier.txt')
-rwxr-xr-x | npc/011-4/bl_barrier.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/011-4/bl_barrier.txt b/npc/011-4/bl_barrier.txt new file mode 100755 index 00000000..4f6512aa --- /dev/null +++ b/npc/011-4/bl_barrier.txt @@ -0,0 +1,24 @@ + +011-4,111,121,0 script #BL_Barrier NPC45,0,0,{ + @state = ((QUEST_Hurnscald & NIBBLE_0_MASK) >> NIBBLE_0_SHIFT); + + if (@state >= 6) goto L_Cave_Abandoned; + if (@state >= 4) goto L_Lord_Barrier_Open; + + message strcharinfo(0), "This entrance appears to be locked."; + goto L_End; + +L_Cave_Abandoned: + message strcharinfo(0), "This place looks like it was abandoned."; + warp "011-6",251,275; + goto L_End; + +L_Lord_Barrier_Open: + message strcharinfo(0), "You insert the silver arrow key and unlock the entrance."; + warp "011-6",251,275; + goto L_End; + +L_End: + @state = 0; + end; +} |