Files
dsrc/sku.0/sys.server/compiled/game/script/beta/terminal_warp.script
T
2013-09-10 23:17:15 -07:00

46 lines
1.3 KiB
Plaintext

/**********************************************************************
* Copyright (c)2000-2002 Sony Online Entertainment Inc.
* All Rights Reserved
*
* Title: terminal_warp
* Description: Grants the warp script to whomever accesses the terminal.
* @author $Author:$
* @version $Revision:$
**********************************************************************/
/***** INCLUDES ********************************************************/
/***** CONSTANTS *******************************************************/
/***** TRIGGERS ********************************************************/
trigger OnObjectMenuRequest(obj_id player, menu_info mi)
{
if (isGod(player) || hasObjVar(player, "beta.terminal_ok"))
{
if (!hasScript(player, "beta.player_warp"))
attachScript(player, "beta.player_warp");
sendSystemMessageTestingOnly(player, "Warp script attached.");
return SCRIPT_CONTINUE;
}
else
{
sendSystemMessageTestingOnly(player, "Only authorized users may access this terminal.");
return SCRIPT_CONTINUE;
}
}
/***** MESSAGEHANDLERS *************************************************/
/***** COMMANDHANDLERS *************************************************/
/***** FUNCTIONS *******************************************************/