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

36 lines
1.0 KiB
Plaintext

/**********************************************************************
* Copyright (c)2000-2002 Sony Online Entertainment Inc.
* All Rights Reserved
*
* Title: postpone_grant
* Description: Attachs the jedi.postponeGrant objvar to the player.
* @author $Author:$
* @version $Revision:$
**********************************************************************/
/***** INCLUDES ********************************************************/
/***** CONSTANTS *******************************************************/
/***** TRIGGERS ********************************************************/
trigger OnInitialize()
{
if (!hasObjVar(self, "jedi.postponeGrant"))
setObjVar(self, "jedi.postponeGrant", 1);
detachScript(self, "systems.jedi.postpone_grant");
return SCRIPT_CONTINUE;
}
/***** MESSAGEHANDLERS *************************************************/
/***** COMMANDHANDLERS *************************************************/
/***** FUNCTIONS *******************************************************/