diff options
-rw-r--r-- | npc/000-0-1/narrator.txt | 14 |
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; +} + } |