diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-17 23:07:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-17 23:07:36 -0300 |
commit | 3f0c57863ff3287eadbe99437b5ebcb7ea82e97b (patch) | |
tree | cf79271136da4bd4adb0e932ad29f4fe8e556302 | |
parent | 9eb78847e8f3f1fc37946bf9efdcf82a68714971 (diff) | |
download | serverdata-3f0c57863ff3287eadbe99437b5ebcb7ea82e97b.tar.gz serverdata-3f0c57863ff3287eadbe99437b5ebcb7ea82e97b.tar.bz2 serverdata-3f0c57863ff3287eadbe99437b5ebcb7ea82e97b.tar.xz serverdata-3f0c57863ff3287eadbe99437b5ebcb7ea82e97b.zip |
Add workaround for the barriers
-rw-r--r-- | npc/081-1/extra.txt | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/npc/081-1/extra.txt b/npc/081-1/extra.txt index 82210b8f..01e6438c 100644 --- a/npc/081-1/extra.txt +++ b/npc/081-1/extra.txt @@ -229,3 +229,81 @@ OnInit: end; } +/* I hate this, but bugs must die, incl. M+ ones */ +081-2,108,214,0 script Button#X21chA1 NPC_NO_SPRITE,{ + @inst = instance_id() + 1; + if (!'XMAS21CANDLE) { + dispbottom l("Northern Lights")+" : "+l("The strong shall yield the %s to enlighten the way, according to the established sequence.", b(l("powder"))); + end; + } + slide 108, 211; + end; + +OnInit: + .distance=1; + end; +} +081-2,109,211,0 script Button#X21chA2 NPC_NO_SPRITE,{ + @inst = instance_id() + 1; + if (!'XMAS21CANDLE) { + dispbottom l("Northern Lights")+" : "+l("The strong shall yield the %s to enlighten the way, according to the established sequence.", b(l("powder"))); + end; + } + slide 107, 214; + end; + +OnInit: + .distance=1; + end; +} + +081-2,132,130,0 script Button#X21chB1 NPC_NO_SPRITE,{ + if (!'XMAS21TREE) { + dispbottom l("In this year Christmas, kids shall play ball. Once the Christmas Tree is set, the festivities may proceed."); + end; + } + slide 131, 126; + end; + +OnInit: + .distance=1; + end; +} +081-2,132,126,0 script Button#X21chB2 NPC_NO_SPRITE,{ + if (!'XMAS21TREE) { + dispbottom l("In this year Christmas, kids shall play ball. Once the Christmas Tree is set, the festivities may proceed."); + end; + } + slide 131, 130; + end; + +OnInit: + .distance=1; + end; +} + +081-2,46,73,0 script Button#X21chC1 NPC_NO_SPRITE,{ + if (!'XMAS21AMBUSH) { + dispbottom l("One room, Seventeen buttons, Three truths, and a lever to bring joy to the children."); + end; + } + slide 47, 70; + end; + +OnInit: + .distance=1; + end; +} +081-2,46,70,0 script Button#X21chC2 NPC_NO_SPRITE,{ + if (!'XMAS21AMBUSH) { + dispbottom l("One room, Seventeen buttons, Three truths, and a lever to bring joy to the children."); + end; + } + slide 47, 73; + end; + +OnInit: + .distance=1; + end; +} + |