// TMW-2 Script // Author: // Jesusalva // Description: // Vault Utilities function script getvaultid { // FIXME: Make this False if ($BETASERVER && !debug) return ##VAULT; else return 0; } function script getvaultexp { .@exp=getarg(0); if (.@exp > 100) Exception("ILLEGAL VAULT EXPERIENCE, FIXME URGENTLY. STOPPING SCRIPT BY FORCE WHILE DOING NOTHING.", RB_DEBUGMES | RB_IRCBROADCAST | RB_GLOBALANNOUNCE | RB_ISFATAL); if (getvaultid()) { ##VAULT_EXP+=.@exp; consoleinfo("Granting %d Soul Exp to %d under the Moubootaur's authority.", .@exp, ##VAULT); } 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; }