mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
22 lines
501 B
Java
Executable File
22 lines
501 B
Java
Executable File
package script.ai;
|
|
|
|
import script.library.attrib;
|
|
import script.obj_id;
|
|
|
|
public class victim extends script.base_script
|
|
{
|
|
public victim()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setAttributeAttained(self, attrib.VICTIM);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
setAttributeAttained(self, attrib.VICTIM);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|