Not sure what i maybe doing wrong here.. I have interupt on all monuments enabled and I also tried adding Airfield to the list and players can still set homes in the towers.. Not sure what or where to check anymore.. :-/
Players able to set homes at monuments
What towers are you talking about ? , is it the power ones because they are seperate monuments afaik.
The Towers inside of airfield :-)
heya, give this a try and let me know
https://github.com/nivex09/NTeleportation/
Thank you for the fast response.. That works to prevent creating moving forward but I also had to add a check in the home command to prevent existing homes from being used if the home position was inside a monument something like this
var monument = NearMonument(position, false, "");
if (!string.IsNullOrEmpty(monument))
{
PrintMsgL(player, $"You can not use a home at {monument}");
return;
}
ok I will add that in thanks