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