diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-10 02:25:43 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-10 02:25:43 -0200 |
commit | 8c04d08d05e87d15530f96a89210d6c2c0f31d95 (patch) | |
tree | ac24f82fd702b3db16411bb1a3895fa52a1ea878 /npc | |
parent | f14dd87479929ca9f511292cb3ffb8b30f480279 (diff) | |
download | serverdata-8c04d08d05e87d15530f96a89210d6c2c0f31d95.tar.gz serverdata-8c04d08d05e87d15530f96a89210d6c2c0f31d95.tar.bz2 serverdata-8c04d08d05e87d15530f96a89210d6c2c0f31d95.tar.xz serverdata-8c04d08d05e87d15530f96a89210d6c2c0f31d95.zip |
Run OnInteract with more frequency at Marggo. The first crop is doomed.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/005-1-1/main.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/005-1-1/main.txt b/npc/005-1-1/main.txt index 263ff287d..34592ab8f 100644 --- a/npc/005-1-1/main.txt +++ b/npc/005-1-1/main.txt @@ -108,7 +108,7 @@ OnBegin: // Minimum 80 sec // Maximum 100 sec addtimer(10, "Nylo#Marggo::OnSpawn"); - addtimer(850, "Nylo#Marggo::OnInteract"); + addtimer(400, "Nylo#Marggo::OnInteract"); addtimer(180000, "Nylo#Marggo::OnFinish"); end; @@ -163,7 +163,7 @@ OnInteract: // Continue the cycle if (getmap() ~= "MRGO*" || getmap() ~= "005-1-1") - addtimer(850, "Nylo#Marggo::OnInteract"); + addtimer(400, "Nylo#Marggo::OnInteract"); end; // A maggot was killed |