diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-04 22:50:19 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-04 22:50:19 -0200 |
commit | 8e58448a466b203da1bb3d6718852c45cdbb483c (patch) | |
tree | a66ab79bf643e93586acbfaaba515ed71d90866a /npc | |
parent | 472b83d1d2c37bbe1886b16edb0af914f2033b09 (diff) | |
download | serverdata-8e58448a466b203da1bb3d6718852c45cdbb483c.tar.gz serverdata-8e58448a466b203da1bb3d6718852c45cdbb483c.tar.bz2 serverdata-8e58448a466b203da1bb3d6718852c45cdbb483c.tar.xz serverdata-8e58448a466b203da1bb3d6718852c45cdbb483c.zip |
Fix more design flaws at Peter involving Instance System
Diffstat (limited to 'npc')
-rw-r--r-- | npc/002-1/peter.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/002-1/peter.txt b/npc/002-1/peter.txt index 4d1783345..1bdcff698 100644 --- a/npc/002-1/peter.txt +++ b/npc/002-1/peter.txt @@ -79,7 +79,7 @@ L_Task: close; OnLowTime: - if (getmap() == "002-2") + if ((getmap() ~= "002-2") || (getmap() ~= "nard")) dispbottom l("Time is running out... Hurry up!"); end; @@ -192,7 +192,7 @@ OnStartOutside: setq3 ShipQuests_Peter, .@INSTID; // It'll be self-destroyed when time runs out (2 minutes) - instance_set_timeout(120, 120, .@INSTID); + instance_set_timeout(180, 180, .@INSTID); instance_init(.@INSTID); // Save in a less reliable way the challenge you took @@ -223,7 +223,7 @@ OnStartOutside: close; OnTimeout: - if (!(getmap() ~= "002-2")) + if (!(getmap() ~= "002-2") && !(getmap() ~= "nard")) end; .@q3 = getq3(ShipQuests_Peter); instance_destroy(.@q3); |