mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
25 lines
448 B
Plaintext
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;
|
|
} |