diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-01 19:58:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-01 19:58:21 -0300 |
commit | 06d3d39041b2b3aa02c4db017328f651d9c95cd9 (patch) | |
tree | 916b76a0fc810f452d2117a7a30dbea7d16ac098 /npc/011-3/flood.txt | |
parent | f0f7ea48e79a6caa805c19c635e7198855965b1c (diff) | |
download | serverdata-06d3d39041b2b3aa02c4db017328f651d9c95cd9.tar.gz serverdata-06d3d39041b2b3aa02c4db017328f651d9c95cd9.tar.bz2 serverdata-06d3d39041b2b3aa02c4db017328f651d9c95cd9.tar.xz serverdata-06d3d39041b2b3aa02c4db017328f651d9c95cd9.zip |
Update Eternal Swamp flood refresh time from 10 to 6/4 minutes
Diffstat (limited to 'npc/011-3/flood.txt')
-rw-r--r-- | npc/011-3/flood.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/011-3/flood.txt b/npc/011-3/flood.txt index 917d3a7c0..0fd0212f5 100644 --- a/npc/011-3/flood.txt +++ b/npc/011-3/flood.txt @@ -4,8 +4,9 @@ // Description: // Controls Eternal Swamps. // Contains functions to flood the map (hide the bridges - mask 1024) -// Flood happens at random and causes BluePar to be spawn. Runs every 10 minutes. +// Flood happens at random and causes BluePar to be spawn. Runs every 6/4 minutes. // At the 6th minute of an hour (6, 16, 26, 36, 46, 56) +// At the 2nd minute of an hour (2, 14 ... 44, 54) 011-3,0,0,0 script #EternalSwampCore NPC_HIDDEN,{ end; @@ -17,11 +18,17 @@ OnInit: addmapmask "011-3", 1024; end; +OnMinute02: OnMinute06: +OnMinute12: OnMinute16: +OnMinute22: OnMinute26: +OnMinute32: OnMinute36: +OnMinute42: OnMinute46: +OnMinute52: OnMinute56: .@fd=!(getmapmask("011-3")&1024); // .@fd - is flooded? |