summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-14 21:54:41 -0300
committerJesusaves <cpntb1@ymail.com>2020-08-05 03:25:42 -0300
commitce86d43343f90ef9c4629143c443ad66f31fec77 (patch)
tree1d519fa842ee26fb6ba0f6c8bab4104da8987c45
parent94590e773d49239bd8a7d651eff3ed7e4a30ce80 (diff)
downloadserverdata-ce86d43343f90ef9c4629143c443ad66f31fec77.tar.gz
serverdata-ce86d43343f90ef9c4629143c443ad66f31fec77.tar.bz2
serverdata-ce86d43343f90ef9c4629143c443ad66f31fec77.tar.xz
serverdata-ce86d43343f90ef9c4629143c443ad66f31fec77.zip
Sketch the heartbeat for Referrals System.
This system will come from Moubootaur Legends
-rw-r--r--npc/000-0-1/narrator.txt14
1 files changed, 10 insertions, 4 deletions
diff --git a/npc/000-0-1/narrator.txt b/npc/000-0-1/narrator.txt
index 8b0bf5cc..b0bbcc5a 100644
--- a/npc/000-0-1/narrator.txt
+++ b/npc/000-0-1/narrator.txt
@@ -14,8 +14,6 @@
000-0-1,25,28,0 script Narrator#000-0-1 NPC_NARRATOR,{
function referralSystem;
- function travelToArtis;
- function travelToArgaes;
switch (getq(General_Narrator))
{
@@ -50,8 +48,8 @@ function travelToArtis {
// Legacy accounts are excluded
// Only one referral per vault account
- //getvaultid();
- if (!islegacyaccount() && !getvaultvar(REFERRAL_PROG)) referralSystem();
+ validacc();
+ if (!LEGACY && !getv("REFERRAL_PROG")) referralSystem();
narrator S_LAST_NEXT,
l("There are a lot of things you must be wondering about."),
@@ -167,4 +165,12 @@ function referralSystem {
return;
}
+OnInit:
+ .sex = G_OTHER;
+ end;
+
+function referralSystem {
+ return;
+}
+
}