summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/vault.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/npc/functions/vault.txt b/npc/functions/vault.txt
index dfa0093d0..050eb4d6f 100644
--- a/npc/functions/vault.txt
+++ b/npc/functions/vault.txt
@@ -25,4 +25,17 @@ function script getvaultexp {
return;
}
+// MirrorLakeSendTo(World, Lake)
+function script MirrorLakeSendTo {
+ .@w=getarg(0);
+ .@t=getarg(1);
+ ##VAULT_GOTO=.@w;
+ ##VAULT_MLTO=.@t;
+ closeclientdialog;
+ dispbottom l("Darkness fills your vision...");
+ sleep2(1000);
+ //kick(getcharid(3), 7); // 7 is not a valid kick reason
+ atcommand("@kick "+strcharinfo(0));
+ end;
+}