diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-17 19:09:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-17 19:09:37 -0300 |
commit | 0caca41237854b11041cc95da55850d944fefcea (patch) | |
tree | ba64b9b84ceee10fd79e9f880dc0c9123cdeb2e0 /localserver/npc | |
parent | 7aae89c0ea4b9d9df7378f8947160361be70a9f7 (diff) | |
download | tools-0caca41237854b11041cc95da55850d944fefcea.tar.gz tools-0caca41237854b11041cc95da55850d944fefcea.tar.bz2 tools-0caca41237854b11041cc95da55850d944fefcea.tar.xz tools-0caca41237854b11041cc95da55850d944fefcea.zip |
023-4 Blackbox placeholder
Diffstat (limited to 'localserver/npc')
-rw-r--r-- | localserver/npc/023-4_blackbox.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/localserver/npc/023-4_blackbox.txt b/localserver/npc/023-4_blackbox.txt new file mode 100644 index 0000000..a5687e5 --- /dev/null +++ b/localserver/npc/023-4_blackbox.txt @@ -0,0 +1,36 @@ +// TMW2 Script +// Author: +// Jesusalva +// Description: +// 023-4 Blackbox + +// Syntax: +// 0234_Password_BlackBox( PASSWORD ) +// 0234_Init_BlackBox( - ) +function script 0234_Password_BlackBox { + .@message$=getarg(0, ""); + // Only react if the message is what we want to hear + if (.@message$ == "PASSWORD") { + if (getq(FrostiaQuest_Homunculus) < 1) + end; + + if (isat("023-3", 26, 219)) { + warp "023-4", 42, 69; + sleep2(15); + dispbottom l("The gates to Aethyr have opened themselves to you."); + } + } + return; +} + +function script 0234_Init_BlackBox { + return; +} + +- script #0234BlackBox NPC_HIDDEN,{ + end; +OnIter: + end; +} + + |