Files
dsrc/sku.0/sys.server/compiled/game/script/space/characters/colzet.java
T

23 lines
532 B
Java
Executable File

package script.space.characters;
import script.obj_id;
public class colzet extends script.base_script
{
public colzet()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
setInvulnerable(self, true);
setName(self, "Lt. Colzet");
return SCRIPT_CONTINUE;
}
public int OnInitialize(obj_id self) throws InterruptedException
{
setInvulnerable(self, true);
setName(self, "Lt. Colzet");
return SCRIPT_CONTINUE;
}
}