diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-23 21:43:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-23 21:43:56 -0300 |
commit | f32084bc86587caee14de6d49ac51948eba45e98 (patch) | |
tree | b85ed7f47fce99a801b61ea2ffbecf27112bbfb5 /npc | |
parent | 98d03dddbf9fdf13d6806f7de690495137afb239 (diff) | |
download | serverdata-jesusalva/calamity.tar.gz serverdata-jesusalva/calamity.tar.bz2 serverdata-jesusalva/calamity.tar.xz serverdata-jesusalva/calamity.zip |
Patch for @WildX - boss respawn after 15m if debug is setjesusalva/calamity
Diffstat (limited to 'npc')
-rw-r--r-- | npc/008-4-1/boss.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/008-4-1/boss.txt b/npc/008-4-1/boss.txt index 748ef1c3..17b04880 100644 --- a/npc/008-4-1/boss.txt +++ b/npc/008-4-1/boss.txt @@ -8,7 +8,12 @@ 008-4-1,0,0,0 script #BossCtrl_008-4-1 NPC_HIDDEN,{ end; -// Respawn every hour +// Test server: 15 minutes only +OnTimer900000: + if (!debug) + end; + +// Otherwise, respawn every hour OnTimer3600000: stopnpctimer; OnInit: |