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