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

26 lines
609 B
Java

package script.systems.jedi;
import script.*;
import script.base_class.*;
import script.combat_engine.*;
import java.util.Arrays;
import java.util.Hashtable;
import java.util.Vector;
import script.base_script;
public class postpone_grant extends script.base_script
{
public postpone_grant()
{
}
public int OnInitialize(obj_id self) throws InterruptedException
{
if (!hasObjVar(self, "jedi.postponeGrant"))
{
setObjVar(self, "jedi.postponeGrant", 1);
}
detachScript(self, "systems.jedi.postpone_grant");
return SCRIPT_CONTINUE;
}
}