Files
dsrc/sku.0/sys.server/compiled/game/script/item/dna/dna_sample.java
T
2018-06-07 00:32:29 +01:00

19 lines
359 B
Java
Executable File

package script.item.dna;
import script.obj_id;
public class dna_sample extends script.base_script
{
public dna_sample()
{
}
public int OnInitialize(obj_id self) throws InterruptedException
{
if (!isCrafted(self))
{
setCraftedId(self, self);
}
return SCRIPT_CONTINUE;
}
}