- Home
- Custom Patches
- U.S. Air Force
- Cannon AFB
- 16 SOS
- 16 SOS AC-130J Shadow OCP Pencil Patch
4 WEEKS FOR PRODUCTION
Made to order
$3.25 each
50+ | 100+ | 200+ | 300+ | 500+ | 1000+ |
---|---|---|---|---|---|
$2.28 | $1.63 | $1.30 | $1.14 | $1.04 | $0.98 |
Details
16th Special Operations Squadron AC-130J Shadow OCP pencil OCP patch. Your 16 SOS OCP pencil patches are 1" tall by 2" wide, and 100% embroidered with Velcro backing.
";document.getElementById('qty-validation-msg-wrap-168859').innerHTML = message; //SWANKEDIT$('#quantity-168859').attr("aria-describedby", "quantity-validation-message");//$('#quantity-168859').focus(); //SWANKCOMMENT$('#quantity-168859').scrollTop();}return IsValidQty;}//ENDSWANKADDfunction UpdateRushOptions() {// Get Default Variant Prices & Determine if On Salevar Price = VarVariantPrice[CurrentVariantId];var SalePrice = VarVariantSalePrice[CurrentVariantId];var OnSale = SalePrice > 0.0 && SalePrice < Price;var BasePrice = CalculateQtyDiscountPrice(OnSale ? SalePrice : Price, 1);// Update Rush Options (when enabled)if (HasRushOptions_65074) {var DiscountChart = RushOptionsChart_65074;for (var i = 0; i < DiscountChart.length; i++) {$('#Rush_Price_' + DiscountChart[i].Id + '_65074').html('+ $' + Number(BasePrice * DiscountChart[i].PercentFee - DiscountChart[i].FixedFee).toLocaleFixed(2) + ' EACH');//SWANKEDIT}}}function UpdatePricesAndArrival() {// Get Default Variant Prices & Determine if On Salevar Price = VarVariantPrice[CurrentVariantId];var SalePrice = VarVariantSalePrice[CurrentVariantId];var OnSale = SalePrice > 0.0 && SalePrice < Price;var BasePrice = OnSale ? SalePrice : Price;var UnitQtyDiscountedPrice = CalculateQtyDiscountPrice(BasePrice, 1);// Update Unit Price$('.unitprice_65074_168859').html(Number(UnitQtyDiscountedPrice).toLocaleFixed(2));$('.origprice_65074').html(Number(Price).toLocaleFixed(2));if (OnSale) $('.on-sale').show(); else $('.on-sale').hide();// SWANKADD// Update Price & variant name on Variants accordin title .var variantHeadingText = $('label[for="variant_' + CurrentVariantId + '"] .option-info').clone().children().remove().end().text();$('.accordion-option-title span').html('(' + variantHeadingText.replace(' Model','') + ')');$('.accordion-price').html("$" + Number(UnitQtyDiscountedPrice).toLocaleFixed(2));// ENDSWANKADD// Update Combined Pricevar CombinedQtyDiscountedPrice = CalculateQtyDiscountPrice(BasePrice, CurrentQty);var CombinedQtyRushFees = CalculateQtyRushFees(UnitQtyDiscountedPrice, CurrentQty);//SWANKADDvar UpsellPriceTotal = parseFloat(document.getElementsByName('UpsellProducts')[0].getAttribute("dataupsellprice")) * CurrentQty;//ENDSWANKADDvar FinalPrice = CombinedQtyDiscountedPrice + CombinedQtyRushFees + UpsellPriceTotal; //SWANKEDIT - added upsell total to final price in js function.$('#price_65074_168859').html(Number(FinalPrice).toLocaleFixed(2));// Update Estimated ArrivalUpdateArrival();}function UpdateArrival() {var ProductionDays = 0;var HasRush = false;// Calculate Arrival from Rush ID (if enabled)if (HasRushOptions_65074) {var CurrentRushId = Number($('input[name="RushID"]').val());if (!isNaN(CurrentRushId) && CurrentRushId > 0) {HasRush = true;try {ProductionDays = GetRushProductionDays(CurrentRushId);} catch { ProductionDays = 0; HasRush = false; }}}// Fallback - Calculate Default Arrival from Productif (ProductionDays === 0) {if (BaseProductionString.indexOf("|") !== -1) {try {var BaseProductionArray = BaseProductionString.split("|");for (var i = 0; i < BaseProductionArray.length; i++) {var delim1 = BaseProductionArray[i].indexOf("-");var delim2 = BaseProductionArray[i].indexOf(",");var LowQty = parseInt(BaseProductionArray[i].substr(0, delim1));var HighQty = parseInt(BaseProductionArray[i].substr(delim1 + 1, delim2 - (delim1 + 1)));var Days = parseInt(BaseProductionArray[i].substr(delim2 + 1));if (parseInt(LowQty) <= parseInt(CurrentQty) && parseInt(CurrentQty) <= parseInt(HighQty)) {ProductionDays = parseInt(Days);break;}}} catch { ProductionDays = 0; HasRush = false; }}else {try {ProductionDays = parseInt(BaseProductionString);} catch { ProductionDays = 0; HasRush = false; }}}// Display Estimated Arrivalif (ProductionDays === 0)$('.prod-eta-date').html("Please Contact Us For More Info.");else {var ArrivalDate = new moment();ArrivalDate.add(ProductionDays, 'days');$('.prod-eta-date').html(ArrivalDate.format("MMMM DD, YYYY"));}// Update Title$('.prod-eta-label').html(HasRush ? "Guaranteed Delivery:" : "Estimated Delivery:");}// Helpers for calculating quantity discount pricesfunction CalculateQtyDiscountPrice(basePrice, qty) {if (HasQtyDiscounts_65074) {var QtyDiscount = GetQtyDiscount();if (QtyDiscountIsFixed_65074)return (basePrice - QtyDiscount) * qty;elsereturn (basePrice * qty * (1 - QtyDiscount));}elsereturn basePrice * qty;}function GetQtyDiscount() {var QtyDiscount = 0.0;var DiscountChart = QtyDiscountChart_65074;for (var i = 0; i < DiscountChart.length; i++) {if (CurrentQty >= DiscountChart[i].LowValue && CurrentQty <= DiscountChart[i].HighValue) {QtyDiscount = DiscountChart[i].Discount;break;}}return QtyDiscount;}// Helpers for calculating rush fees & production daysfunction CalculateQtyRushFees(basePrice, qty) {var RushFee = 0.0;if (HasRushOptions_65074) {var CurrentRushId = Number($('input[name="RushID"]').val());if (!isNaN(CurrentRushId) && CurrentRushId > 0) {var RushFees = GetRushFees(CurrentRushId);RushFee = (basePrice * qty * RushFees.PercentFee) + (qty * RushFees.FixedFee);}}return RushFee;}function GetRushFees(rushId) {var RushFees = { FixedFee: 0.0, PercentFee: 0.0 };if (HasRushOptions_65074) {var DiscountChart = RushOptionsChart_65074;for (var i = 0; i < DiscountChart.length; i++) {if (DiscountChart[i].Id === rushId) {RushFees.FixedFee = DiscountChart[i].FixedFee;RushFees.PercentFee = DiscountChart[i].PercentFee;break;}}}return RushFees;}function GetRushProductionDays(rushId) {var RushProductionDays = 0;if (HasRushOptions_65074) {var DiscountChart = RushOptionsChart_65074;for (var i = 0; i < DiscountChart.length; i++) {if (DiscountChart[i].Id === rushId) {RushProductionDays = DiscountChart[i].ProductionDays;break;}}}return RushProductionDays;}/*Upsells*/function UpsellClick(theItem) {try {var UpsellItemList = '';var UpsellList = document.getElementsByName('Upsell');var UpsellProductList = document.getElementsByName('UpsellProducts');var UpsellPriceTotal = 0;for (i = 0; i < UpsellList.length; i++) {if (UpsellList[i].checked) {UpsellItemList = UpsellItemList + (UpsellItemList.length > 0 ? ',' : '') + UpsellList[i].value;UpsellPriceTotal += parseFloat(UpsellList[i].getAttribute("data-upsell-price"));UpsellList[i].classList.add('checked');}elseUpsellList[i].classList.remove('checked');}for (j = 0; j < UpsellProductList.length; j++) {UpsellProductList[j].value = UpsellItemList;UpsellProductList[j].setAttribute("dataupsellprice", UpsellPriceTotal);}UpdatePricesAndArrival();} catch (err) { console.error(err); }}function SetDefaultUpsell() {try {if ($('#upsell-product-ids-168859').length && $('#upsell-product-ids-168859').val() == '' && $('.upsell-products-wrap input').length && $('.upsell-products-wrap input:checked').length) {$('.upsell-products-wrap input:checked').each(function () {UpsellClick($(this).val());});}} catch (err) { console.error(err); }}/*END Upsells*/
Section 889 Certification Form
Section 889 Certification Form
- Frequent questions
- Product videos
What Determines Cost?
The size and order quantity determine the price of your patch. We do not charge extra for multiple colors of thread and our prices are quoted with Velcro included. Subtract $0.30 for any patches without Velcro.
What Does 100% Embroidered Mean?
100% embroidery means that the entire surface of your patch will be stitched with colored thread. In our opinion, a twill background patch is inferior and we do not recommend that option.
Sample Approval
Once your artwork is final, we will create a free sample patch and email a digital photo for your approval. The majority of our patch designs are approved via email. We are happy to mail the actual physical patch sample to you for a sample charge of $25.00, which will take 1-2 weeks to arrive.
Artwork Creation
Our free artwork service applies to the designs that are placed into production.
Patch Detail
Depending on the size of your patch, we can actually accomplish very detailed replication of your artwork using embroidered thread. Small, intricate details will not stitch accurately and simpler is often better. Facial features and extremely small text are especially challenging. Cartoonish images stitch quite well and we do a great job with aircraft and weapons.
Rush Service
Rush production is not available, but let us know your deadline and we will do our best to make it happen.
Patch Order Time
Your reorders and our MAJCOM patches will ship about one week sooner than other patches.
Minimum Order Quantity
We have a minimum order quantity of 50 patches, and you can reorder as few as 25 patches. The minimum quantity for our patches applies to each design. This is because each design requires a different digitized image that instructs the machine how to stitch your patch. We do offer discounts on the same patch design in different colors, such as a color patch and a companion desert or OCP patch.
Patch Colors
View Thread Chart - PDF
Number of Colors
Your patch price includes 12 colors at no additional charge. We will use as many colors as needed to make you the best quality patch and we will not nickel and dime you for additional colors. Most companies charge an extra $0.15 per color for more than 7 colors.
889 Compliance Forms FAQs
889 Compliance Forms PDF
Aviator Gear Competition Grand Winner
'There is only one place to turn' - 2020 Aviator Gear Competition Grand Winner
At the start of January we launched a competition to see who could send us the best content with their Aviator Gear. Cue Torn Tompkins who blew us all away with this hilarious take on his Aviator Gear...
Aviator Gear Custom Patch Production
Aviator Gear Custom Patch Production
Thank you for visiting us! We are ready to bring your ideas to life with free design services and unlimited revisions. Our mission is to take care of your squadron, and make you look good. Let's get started
Aviator Gear Patches - Before and After
Aviator Gear Patches - Before &After
Free artwork and no setup charges! Our high-quality custom patches are 100% embroidered and designed by the best artists in the business. Send us your ideas at https://www.aviatorgear.com/v-127-custom-pvc-patches.aspx
Aviator Gear PVC Patches
Aviator Gear PVC Patches
Thank you for visiting us! Check out our amazing PVC patches. https://www.aviatorgear.com/v-127-custom-pvc-patches.aspx. Let's get started!
Aviator Gear Pencil Patches
Aviator Gear Pencil Patches
Thank you for visiting us! We are ready to bring your ideas to life with free design services and unlimited revisions. Our 1" x 2" flight suit pencil pocket patches are 100% embroidered with Velcro ba...
Any questions? get in Touch
Not sure about the details?Or looking for something extra customized?Just drop us a line and we'll get back to you within 24 hours.