summaryrefslogtreecommitdiff
path: root/npc/023-3-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-10-28 19:23:27 -0300
committerJesusaves <cpntb1@ymail.com>2023-10-28 19:23:27 -0300
commitc0337b2a6498eb75a9e4e0188b947a258961f953 (patch)
treefca7b2ab773afa709dfb1588d6ac239c7d798680 /npc/023-3-1
parentd4a359b7bd7951afa7f462dcf9467e5272bda95a (diff)
downloadserverdata-c0337b2a6498eb75a9e4e0188b947a258961f953.tar.gz
serverdata-c0337b2a6498eb75a9e4e0188b947a258961f953.tar.bz2
serverdata-c0337b2a6498eb75a9e4e0188b947a258961f953.tar.xz
serverdata-c0337b2a6498eb75a9e4e0188b947a258961f953.zip
Allow to exchange Wumpus Egg for the Sunny Crystal, as per the official design.
Prepare the Gemini Quest extension after MK is dead (nothing happens yet).
Diffstat (limited to 'npc/023-3-1')
-rw-r--r--npc/023-3-1/logic.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/023-3-1/logic.txt b/npc/023-3-1/logic.txt
index 3a58013b0..68d391329 100644
--- a/npc/023-3-1/logic.txt
+++ b/npc/023-3-1/logic.txt
@@ -10,6 +10,8 @@
end;
OnTouch:
+ if (instance_id() < 0)
+ cwarp "014-2-2", 35, 20;
.@m$=getmap();
.@n=getq(General_Narrator);
.@q=getq(FrostiaQuest_Homunculus);
@@ -36,6 +38,8 @@ OnTouch:
023-3-1,45,80,0 script #Exit02331 NPC_HIDDEN,1,0,{
end;
OnTouch:
+ if (instance_id() < 0)
+ cwarp "014-2-2", 35, 20;
.@n=getq(General_Narrator);
.@q=getq3(FrostiaQuest_Homunculus);
// Cheater Detected
@@ -305,3 +309,19 @@ OnTimerQuit:
+023-3-1,45,33,0 script Isbamuth NPC_ISBAMUTH,{
+ mesn;
+ mesq l("I lost interest in you. Don't bother me - leave from where you've came.");
+ mesc l("Maybe if NetSysFire was around, she would finish coding this NPC.");
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+
+OnInstanceInit:
+ disablenpc instance_npcname(.name$);
+ end;
+}
+