mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -04:00
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
include library.anims;
|
|
include library.factions;
|
|
|
|
trigger OnAttach()
|
|
{
|
|
//setHealth(self, -1000);
|
|
kill(self);
|
|
factions.setFaction( self, "Rebel");
|
|
//setAnimationMood(self, "npc_dead_01");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|