How would I go about making an entire island a no build area for housing?
QUOTE (Abracadabra @ July 08, 2006 12:37 am) |
How would I go about making an entire island a no build area for housing? |
If you are using the custom region in a box script, create a custom region that covers the area and set the AllowHousing option to false.
If you are creating your own region definition, then you would add the following to your region definition
CODE |
public override bool AllowHousing( Mobile from, Point3D p ) { return false; }
|