#include "nw_i0_plot"

void main()
{
    // Define the area to search in. If OBJECT_INVALID, it will use the caller's area.
    object oArea = OBJECT_INVALID; 

    // Define the tags of the objects to be deleted
    string sTag1 = "CAS_PORN_PROJECTOR";
    string sTag2 = "CAS_NPC_PROJECTOR";

    // Initialize the first object to check
    object oTarget = GetFirstObjectInArea(oArea);

    // Loop through all objects in the specified area
    while(GetIsObjectValid(oTarget))
    {
        // Check if the current object matches either of the specified tags
        if (GetTag(oTarget) == sTag1 || GetTag(oTarget) == sTag2)
        {
            // Destroy the object if it matches
            DestroyObject(oTarget);
        }

        // Move to the next object in the area
        oTarget = GetNextObjectInArea(oArea);
    }
}
