Files
dsrc/sku.0/sys.server/compiled/game/script/item/special/serialize_component.script
T

25 lines
448 B
Plaintext

trigger OnAttach() {
boolean success = true;
success &= setCraftedId(self, self);
success &= setCrafter(self, self);
if(success)
detachScript(self, "item.special.serialize_component");
return SCRIPT_CONTINUE;
}
trigger OnInitialize() {
boolean success = true;
success &= setCraftedId(self, self);
success &= setCrafter(self, self);
if(success)
detachScript(self, "item.special.serialize_component");
return SCRIPT_CONTINUE;
}