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

36 lines
1.3 KiB
Java
Executable File

package script.planet_map;
import script.library.planetary_map;
import script.location;
import script.obj_id;
public class map_loc extends script.planet_map.map_loc_base
{
public map_loc()
{
}
public int OnInitialize(obj_id self) throws InterruptedException
{
String template = getTemplateName(self);
if ((template != null) || (!template.equals("")))
{
if (template.indexOf("object/building/player/city/garden_") != -1)
{
detachScript(self, "planet_map.map_loc_both");
return SCRIPT_CONTINUE;
}
}
if (!planetary_map.addMapLocation(self))
{
location here = getLocation(self);
debugServerConsoleMsg(self, "WARNING: unable to add self as planetary map location!");
debugServerConsoleMsg(self, "template = " + template + " here = " + here.toString());
LOG("planetaryMapLocation", "trigger OnInitialize()");
LOG("planetaryMapLocation", "WARNING: unable to add self (" + self + ") as planetary map location!");
LOG("planetaryMapLocation", "template = " + template);
LOG("planetaryMapLocation", "here = " + here.toString());
}
return SCRIPT_CONTINUE;
}
}