diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-03 11:25:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-03 11:25:55 -0300 |
commit | 8e398463ed58bd7c9b7f2f2e0695fed964182e75 (patch) | |
tree | 7a8d49cae65fa0b635ccfd6df9df1df38600943d /npc/008-0/master.txt | |
parent | 7a877ff23af97bf66fba284668e09940398b6725 (diff) | |
download | serverdata-8e398463ed58bd7c9b7f2f2e0695fed964182e75.tar.gz serverdata-8e398463ed58bd7c9b7f2f2e0695fed964182e75.tar.bz2 serverdata-8e398463ed58bd7c9b7f2f2e0695fed964182e75.tar.xz serverdata-8e398463ed58bd7c9b7f2f2e0695fed964182e75.zip |
[skip ci] Keep party dungeon timer running, even if you leave 008-x domains.
So you can rest in peace :p
Diffstat (limited to 'npc/008-0/master.txt')
-rw-r--r-- | npc/008-0/master.txt | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/npc/008-0/master.txt b/npc/008-0/master.txt index de7e60ab3..85f9d2e38 100644 --- a/npc/008-0/master.txt +++ b/npc/008-0/master.txt @@ -111,17 +111,13 @@ L_TooSmall: OnStart: @pmloop=0; OnLoop: - if (getmapname() ~= "008-*") { - @pmloop+=1; - if (@pmloop < 1200) { - addtimer(1000, "Party Master::OnLoop"); - } else { - @pmloop=0; - warp "008-0", 47, 64; - dispbottom l("You ran out of time..."); - } + @pmloop+=1; + if (@pmloop < 1200) { + addtimer(1000, "Party Master::OnLoop"); } else { @pmloop=0; + warp "008-0", 47, 64; + dispbottom l("You ran out of time..."); } end; |