summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-04-16 04:45:57 -0300
committerJesusaves <cpntb1@ymail.com>2020-04-16 04:45:57 -0300
commit21a3920db1070e1f7e87f2ebd642b103fefeaf04 (patch)
treec8351c5cd1d7a461e5cabb056b315ff84be48071
parent4570e13cfcacac9790e7649bf7bda37c1ba38b3d (diff)
downloadserverdata-21a3920db1070e1f7e87f2ebd642b103fefeaf04.tar.gz
serverdata-21a3920db1070e1f7e87f2ebd642b103fefeaf04.tar.bz2
serverdata-21a3920db1070e1f7e87f2ebd642b103fefeaf04.tar.xz
serverdata-21a3920db1070e1f7e87f2ebd642b103fefeaf04.zip
Testing
-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;
}