mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
27 lines
676 B
Java
27 lines
676 B
Java
package script.city;
|
|
|
|
import script.*;
|
|
import script.base_class.*;
|
|
import script.combat_engine.*;
|
|
import java.util.Arrays;
|
|
import java.util.Hashtable;
|
|
import java.util.Vector;
|
|
import script.base_script;
|
|
|
|
import script.library.create;
|
|
import script.library.utils;
|
|
import script.library.locations;
|
|
|
|
public class general_ship_spawner extends script.base_script
|
|
{
|
|
public general_ship_spawner()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
location here = getLocation(self);
|
|
obj_id npc = createObject("object/static/structure/general/distant_ship_controller_general.iff", here);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|