Baddies Caribbean - Season 1
Episode 20: Any Last Words?
Do you have a video playback issues? Please disable AdBlocker in your browser for our website.
Due to a high volume of active users and service overload, we had to decrease the quality of video streaming. Premium users remains with the highest video quality available. Sorry for the inconvinience it may cause. Donate to keep project running .
Subscribe for Gomovies notifications
Subscribe for notifications from Gomovies
'); window['WebPushModel'].initFavoriteModal(); }, initFavoriteModal: function() { $(".RefusedClose").on("click",function() { localStorage.setItem('permission_time', Date.now()); $("#favoriteModal").remove(); }); $(".notificationPanelAllow").on("click",function() { window['WebPushModel'].subscribe(null); $("#favoriteModal").remove(); }); $(".closeFavoriteBox").on("click",function() { $("#favoriteModal").remove(); }); $(".closeFavoriteBox").on("click",function() { $("#favoriteModal").remove(); }); $("#wrapper_for_sub_modal").on("click",function() { $("#favoriteModal").remove(); }); }, setConfirm: function(msg,token) { $.ajax({ url: "/web-notification/confirm?client=" + encodeURIComponent(token) + "&msg=" + encodeURIComponent(msg), type: "GET", dataType: "html" }); }, unsubscribeFavorite: function(elem, isProfile) { var form_data = new FormData(); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("page",$(elem).data("id")); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); $.ajax({ url: "/web-notification/remove_favorite", type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "json", statusCode: { 500: function() { window['WebPushModel'].setError("deleteFavorite","Status 500"); $(elem).removeClass("btnLoader"); $.notify("Something went wrong",'danger'); }, 404: function() { $.notify("Data not found",'danger'); $(elem).removeClass("btnLoader"); }, 403: function() { $(elem).removeClass("btnLoader"); $.notify("Permission denied",'danger'); }, 400: function() { $(elem).removeClass("btnLoader"); $.notify("Something went wrong",'danger'); }, 200: function(data) { $('#add_favorites').attr('data-type',"1"); if(isProfile) { $(elem).remove(); } $(elem).removeClass("btnLoader"); $("a.favorites").attr('data-count' ,data.count); if(parseInt(data.count) > 0 && !$("a.favorites").hasClass("active")) { $("a.favorites").addClass("active") } else if(parseInt(data.count) == 0) { $("a.favorites").removeClass("active"); } if(!isProfile) { var revers_img = $("#add_favorites").find('img')[0].src; var text_img = $($("#add_favorites").find('img')[0]).attr("data-revers"); var revers = $($("#add_favorites").find('span')[0]).attr("data-revers"); var text = $($("#add_favorites").find('span')[0]).html(); $("#add_favorites").find('img')[0].src = text_img; $($("#add_favorites").find('img')[0]).attr("data-revers",revers_img); $($("#add_favorites").find('span')[0]).attr("data-revers",text).html(revers); } $(".userImg").attr("data-count",data.count); $.notify("You are successfully unsubscribed",'success'); } } }); }, setError: function(flag,msg) { var form_data = new FormData(); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("flag",flag); form_data.append("msg",msg); $.ajax({ url: "/web-notification/error", type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "text" }); }, setData: function(url,elem,flag) { var id = typeof elem == 'object' ? $(elem).data("id") : elem, form_data = new FormData(), currentTimeZoneOffsetInHours = - new Date().getTimezoneOffset()/60; elem = typeof elem == 'object' ? elem : (url == "/web-notification/setfavorite" ? $("#add_favorites") : $("#remove_favorite")); form_data.append("client_token",window['WebPushModel'].user_token); form_data.append("time_zone",currentTimeZoneOffsetInHours); form_data.append($("meta[name='csrf-param']").attr('content'),$("meta[name='csrf-token']").attr('content')); form_data.append("page",id); $.ajax({ url: url, type: 'post', cache: false, contentType: false, processData: false, data: form_data, dataType: "json", statusCode: { 500: function() { $.notify("Something went wrong",'danger' ); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } window['WebPushModel'].setError("request","Status 500 " + url); }, 404: function() { window['WebPushModel'].setError("request","Status 404 " + url); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } $.notify("Data not found",'danger'); }, 403: function() { window['WebPushModel'].setError("request","Status 403 " + url); $.notify("Permission denied",'danger'); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } }, 400: function() { $.notify("Something went wrong",'danger'); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); } window['WebPushModel'].setError("request","Status 400 " + url); }, 200: function(data) { $('#add_favorites').attr('data-type',"0"); if($(elem).data("id") !== false && $(elem).data("id") !== null) { $(elem).removeClass("btnLoader"); $("a.favorites").attr('data-count' ,data.count); if(parseInt(data.count) > 0 && !$("a.favorites").hasClass("active")) { $("a.favorites").addClass("active") } else if(parseInt(data.count) == 0) { $("a.favorites").removeClass("active"); } if(url == "/web-notification/settoken" || url == "/web-notification/setfavorite") { var revers_img = $("#add_favorites").find('img')[0].src; var text_img = $($("#add_favorites").find('img')[0]).attr("data-revers"); var revers = $($("#add_favorites").find('span')[0]).attr("data-revers"); var text = $($("#add_favorites").find('span')[0]).html(); $("#add_favorites").find('img')[0].src = text_img; $($("#add_favorites").find('img')[0]).attr("data-revers",revers_img); $($("#add_favorites").find('span')[0]).attr("data-revers",text).html(revers); if(flag) { $(".popoverBlock.device").show(); } $(".userImg").attr("data-count",data.count); $.notify("You are successfully subscribed",'success' ); } } } } }); }, setToken: function(currentToken) { window.localStorage.setItem( 'firebase_token', currentToken ? currentToken : '' ); }, sendTokenToServer: function(currentToken,id) { window['WebPushModel'].user_token = currentToken; if (!window['WebPushModel'].isTokenSentToServer(currentToken)) { window['WebPushModel'].setToken(currentToken); window['WebPushModel'].setData("/web-notification/settoken",$("#add_favorites")); } else if(id !== null) { window['WebPushModel'].setData("/web-notification/setfavorite",id); } }, isTokenSentToServer: function(currentToken) { return window.localStorage.getItem('firebase_token') == currentToken; }, subscribe: function(id) { window.messaging.requestPermission() .then(function () { window.messaging.getToken() .then(function (currentToken) { if (currentToken) { window['WebPushModel'].sendTokenToServer(currentToken,id); } else { window['WebPushModel'].setError('error get token. ID: ' + id,"error get token."); window['WebPushModel'].setToken(false); window['WebPushModel'].sendTokenToServer(false,id); } }) .catch(function (err) { window['WebPushModel'].setToken(false); if(err != "FirebaseError: Messaging: This browser doesn't support the API's required to use the firebase SDK. (messaging/unsupported-browser).") { window['WebPushModel'].setError('error get token. ID: ' + id,err); } window['WebPushModel'].sendTokenToServer(false,id); //if(err && err.code && err.code == "messaging/unsupported-browser") //{ //window['WebPushModel'].sendTokenToServer(false,id); //} }); }) .catch(function (err) { }); } }; document.addEventListener("DOMContentLoaded", function() { $('#add_favorites').click(function() { if($("#login_menu").length) { getLogin($("#login_menu")); }else{ if($(this).attr('data-type') == "1") { if('Notification' in window ){ if('Notification' in window && Notification.permission === 'default') { window['WebPushModel'].getFavoriteModal(); } else if(Notification.permission === "denied") { $("#inst_m_d").css("display",'flex'); } else if(Notification.permission === "granted") { window['WebPushModel'].subscribe($(this).data('id')); } }else{ window['WebPushModel'].setData("/web-notification/setfavorite",$(this).data('id'),true); } } else { window['WebPushModel'].unsubscribeFavorite($("#add_favorites"),false); } } }); firebase.initializeApp({messagingSenderId: '1069420953629'}); if ('Notification' in window) { window.messaging = firebase.messaging(); window.messaging.onMessage(function(payload) { navigator.serviceWorker.register('/messaging-sw.js'); Notification.requestPermission(function(result) { if (result === 'granted') { navigator.serviceWorker.ready.then(function(registration) { registration.showNotification(payload.notification.title, payload.notification); window['WebPushModel'].setConfirm(payload.notification,window.localStorage.getItem('firebase_token')); }).catch(function(error) { window['WebPushModel'].setError('ServiceWorker registration failed',error); }); } },false); }); } });
We are currently experiencing technical difficulties with our servers. We hope to have this resolved soon. This issue doesn't affect premium users.
Get Premium
Watch on MixDrop/MyStream
Oops... Something went wrong Try again later.
Here You can choose a playback server.
Subtitles Control Here you can customize the appearance of subtitles.
Auto Next
EPISODE
Episode 01: We Outside Tonight Episode 02: Flew'd Out Episode 03: Don’t Get Too Comfortable Episode 04: Let's Get Ready to Rumblllllle Episode 05: Drowned You Episode 06: Last Night in Barbados Episode 07: Last Night in Barbados Episode 08: We Outside...Fighting Episode 09: Unfriended Episode 10: Eviction Notice Episode 11: What You Say About My Mama? Episode 12: Frenemies and Allies Episode 13: Mama Said Knock You Out! Episode 14: Last Night in Barbados Episode 15: Let's Get Ready to Rumblllllle Episode 16: Time to eat…or EAT Episode 17: Welcome Home? Episode 18: Guess Who's Back Episode 19: It's a Family Reunion Episode 20: Any Last Words? Episode 21: Reunion Part 1
Description The Baddies head to the Caribbean where they plan on creating more of a storm than a Hurricane.
Actors: Natalie Nunn, Natalie Nunn Scotlynd Ryan Scotlynd Ryan
Director: N/A
IMDb: 5.9
Quality:
Duration: 53 min
Keywords: #Baddies Caribbean #Natalie Nunn #Scotlynd Ryan #Season 1
COMMENTS (0) Sort by Newest Newest Oldest
User Name
Email
The Bad Girls Club - Season 17
The Kardashians - Season 4
Baddies East - Season 1
Blueface and Chrisean: Crazy in Love - Season 2
Baddies West - Season 1
Baddies ATL - Season 1
Baddies Caribbean Auditions - Season 1
Bad Vs Wild - Season 1
Baddies South - Season 1
Country: Genre: Play Now ';
ACTORS OF "Baddies Caribbean - Season 1 "
Natalie Nunn Scotlynd Ryan