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

18 lines
442 B
Java
Executable File

package script.city;
import script.location;
import script.obj_id;
public class ship_spawner extends script.base_script
{
public ship_spawner()
{
}
public int OnInitialize(obj_id self) throws InterruptedException
{
location here = getLocation(self);
obj_id npc = createObject("object/static/structure/general/distant_ship_controller2.iff", here);
return SCRIPT_CONTINUE;
}
}