add artic base
Artic base ?
I will be adding it soon
I seem to be having a hard time with the Artic Research Base. I do have the latest plugin v1.3.5
I have the settings for Artic Research Base True but it's not creating the zone for it. All other monuments works.
I did try deleting the config file but it's still not working for the Artic Research Base.
Mithos
I seem to be having a hard time with the Artic Research Base. I do have the latest plugin v1.3.5
I have the settings for Artic Research Base True but it's not creating the zone for it. All other monuments works.
I did try deleting the config file but it's still not working for the Artic Research Base.
I will check it when I get a free chance, havent heard anything about any issues.
FastBurst
I will check it when I get a free chance, havent heard anything about any issues.
I don't know if this is related (post from Zone Manager): https://umod.org/community/zone-manager/40849-arctic-research-bases
"The new Arctic Research Bases are PVP and cannot be changed by any means know to me. I am using True PVE along with ZoneManager and ZoneManagerAutoZones. I tried to edit the zone flags to change it to PVE but was not able to as there is no flag for "noPvP" only a flag for "noPvE". I already submitted this as a bug to Facepunch."
the issue is line 2162 (i use notepad++) the line currently is:
if (config.StableB.Enabled)this needs to be changed to: if (config.ArticA.Enabled)the spelling doesnt matter it just needs to match the rest of the code for the arctic base and make sure its the line below this and not above it as thats the StableB code.if (monument.name.Contains("arctic_research_base_a", CompareOptions.IgnoreCase))
{
string friendlyname = monument.displayPhrase.english;
string ID = "arctic_research_base_a"; Nightraven
the issue is line 2162 (i use notepad++) the line currently is:
this needs to be changed to:if (config.StableB.Enabled)the spelling doesnt matter it just needs to match the rest of the code for the arctic base and make sure its the line below this and not above it as thats the StableB code.if (config.ArticA.Enabled)if (monument.name.Contains("arctic_research_base_a", CompareOptions.IgnoreCase)) { string friendlyname = monument.displayPhrase.english; string ID = "arctic_research_base_a";
Woot! this fixed it!.
Thanks ❤️
updated thanks for the catch!