mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -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;
|
|
} |