I have made a mini game of sorts that uses Bots at a monument. I can assing the custom bot to a parent monument so they stay in place after a wipe. Is there a way to also associate a zone to a parent monument?
Possible to tie a zone to a monument?
sorry for the late reply but i use this to make a zone by monument
void ZoneOutpost()
{
foreach (var current in TerrainMeta.Path.Monuments)
{
if (current.displayPhrase.english.Contains("Outpost"))
{
string friendlyname = current.displayPhrase.english;
string ID = "OutPost";
string[] messages = new string[6];
messages[0] = "name";
messages[1] = friendlyname;
messages[2] = "ejectsleepers";
messages[3] = "true";
messages[4] = "radius";
messages[5] = "150";
ZoneManager?.CallHook("CreateOrUpdateZone", ID, messages, current.transform.position);
}
}
}so to find monument short name just run
foreach (var current in TerrainMeta.Path.Monuments)
{
Puts(current.displayPhrase.english);
}
and that should give you names of monuments