summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/006-0/core.txt8
-rw-r--r--npc/006-3/core.txt4
2 files changed, 6 insertions, 6 deletions
diff --git a/npc/006-0/core.txt b/npc/006-0/core.txt
index 3955a8513..166c393df 100644
--- a/npc/006-0/core.txt
+++ b/npc/006-0/core.txt
@@ -8,18 +8,18 @@
OnTouch:
if (is_staff()) goto L_Accept; // FIXME
// Reject
- specialeffect(5000, SELF, .name$);
+ specialeffect(5000, SELF, getcharid(3));
dispbottom l("The power which lies in Candor rejects your strength.");
sleep2(3000);
- specialeffect(5002, SELF, .name$);
+ specialeffect(5002, SELF, getcharid(3));
end;
L_Accept:
- specialeffect(5000, SELF, .name$);
+ specialeffect(5000, SELF, getcharid(3));
dispbottom l("The power which lies in Candor acknowledges your strength.");
sleep2(2500);
warp "006-3", 49, 52;
sleep2(500);
- specialeffect(5001, SELF, .name$);
+ specialeffect(5001, SELF, getcharid(3));
end;
}
diff --git a/npc/006-3/core.txt b/npc/006-3/core.txt
index ca5a6f9ca..016d80739 100644
--- a/npc/006-3/core.txt
+++ b/npc/006-3/core.txt
@@ -7,9 +7,9 @@
OnTouch:
//warp "006-3", 49, 52;
- specialeffect(5000, SELF, .name$);
+ specialeffect(5000, SELF, getcharid(3));
dispbottom l("The power which lies in Candor rejects your strength.");
sleep2(3000);
- specialeffect(5002, SELF, .name$);
+ specialeffect(5002, SELF, getcharid(3));
end;
}