Files
dsrc/sku.0/sys.server/compiled/game/script/systems/jedi/postpone_grant.script
T

17 lines
520 B
Plaintext

/**********************************************************************
* Title: postpone_grant
* Description: Attachs the jedi.postponeGrant objvar to the player.
**********************************************************************/
/***** TRIGGERS ********************************************************/
trigger OnInitialize()
{
if (!hasObjVar(self, "jedi.postponeGrant"))
setObjVar(self, "jedi.postponeGrant", 1);
detachScript(self, "systems.jedi.postpone_grant");
return SCRIPT_CONTINUE;
}