mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
20 lines
307 B
Plaintext
20 lines
307 B
Plaintext
trigger OnAttach() {
|
|
|
|
messageTo(self, "handleAutoInsure", null, 1.0f, false);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
trigger OnInitialize() {
|
|
|
|
messageTo(self, "handleAutoInsure", null, 2.0f, false);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
messageHandler handleAutoInsure() {
|
|
|
|
setAutoInsured(self);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
} |