mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
16 lines
310 B
Java
Executable File
16 lines
310 B
Java
Executable File
package script.npe;
|
|
|
|
import script.obj_id;
|
|
|
|
public class make_invulnerable extends script.base_script
|
|
{
|
|
public make_invulnerable()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setInvulnerable(self, true);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|