Files
dsrc/sku.0/sys.server/compiled/game/script/ai/victim.java
T
2018-06-07 00:32:29 +01:00

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;
}
}