int StartingConditional()
{
    string sItemType = GetLocalString(OBJECT_SELF, "ITEM_TYPE");
    if (sItemType == "ARROW" || sItemType == "BOLT")
    {
        return TRUE;
    }
    return FALSE;
}