mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
18 lines
360 B
Java
Executable File
18 lines
360 B
Java
Executable File
package script.e3demo;
|
|
|
|
import script.library.factions;
|
|
import script.obj_id;
|
|
|
|
public class e3_deadguy extends script.base_script
|
|
{
|
|
public e3_deadguy()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
kill(self);
|
|
factions.setFaction(self, "Rebel");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|