'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • Coffin Dance (Official Music Video HD)

    Watch This : https://www.youtube.com/watch?v=w7DcDTb0zms I do not own the music and videos, neither ads or monetization. all the things up there goes respectively to the owners Music used : https://www.youtube.com/watch?v=iLBBRuVDOo4 Vicetone & Tony Igy - Astronomia #Memes #CoffinDance #Astronomia #CoffinMeme #Coffin #CoffinMeme #DanceMeme #CoffinDanceMeme

    published: 30 Mar 2020
  • Horror Game Where Your Sister Decides To Eat The Neighbor - The Coffin of Andy and Leyley

    The Coffin of Andy and Leyley is a horror game where a brother and sister decide to eat their neighbor. Game Playlist: https://tinyurl.com/39bzv6j6 Game Info: https://nemlei.itch.io/the-coffin-of-andy-and-leyley "Ummm" ヽ(・ω・`)----Crummy Personal Links Below This Line----(´・ω・)ノ My Masculine Patreon: https://goo.gl/e8XfHN My Cool Twitch: https://goo.gl/neioFL My Manly Twitter: http://goo.gl/wStB6o My Chill Instagram: https://goo.gl/8nPFzi My Weeaboo Manly Steam Group: http://goo.gl/v50fAa My Comfy Tiktok: https://tinyurl.com/czm4ewbp #thecoffinofandyandleyley

    published: 26 Mar 2023
  • My Sister Ate The Neighbor & Now We're On The Run - The Coffin of Andy and Leyley Episode 2 [ 1 ]

    The Coffin of Andy and Leyley returns in Episode 2 GRAVES as after eating our neighbor we go on to more misadventures and Ashley being Ashley. Video is part 1 of 2 Game Info: https://store.steampowered.com/app/2378900/The_Coffin_of_Andy_and_Leyley/ Game Playlist: https://tinyurl.com/39bzv6j6 "Ummmmmmm" ヽ(・ω・`)----Crummy Personal Links Below This Line----(´・ω・)ノ My Masculine Patreon: https://goo.gl/e8XfHN My Cool Twitch: https://goo.gl/neioFL My Manly Twitter: http://goo.gl/wStB6o My Chill Instagram: https://goo.gl/8nPFzi My Weeaboo Manly Steam Group: http://goo.gl/v50fAa My Comfy Tiktok: https://tinyurl.com/czm4ewbp #thecoffinofandyandleyley

    published: 15 Oct 2023
  • Hey Andy Sweetie! | The Coffin of Andy and Leyley Animation

    https://nemlei.itch.io/the-coffin-of-andy-and-leyley andyashley.swf The Coffin of Andy and Leyley is an RPG maker indie game that I played recently, and I think it has lots of potential. You should definitely check it out before the full game drops.

    published: 23 Apr 2023
  • This Horror Game is a Cultural Experience… The Coffin of Andy and Leyley

    The Coffin of Andy and Leyley Socials: Twitter: https://twitter.com/sauceddie Instagram: https://www.instagram.com/sauceddie TikTok: https://www.tiktok.com/@sauceddie Submit Your Scariest tiktoks! : https://www.reddit.com/r/scaryeddie/ Merch: https://theboys.store Discord: https://discord.gg/eddievr My friends: Mully: https://www.youtube.com/channel/UClS6zI81d6YaDy7yLjrCzEw Juicy: https://www.youtube.com/channel/UC_YkukM6o3D3GiKnFXLq0vQ Josh: https://www.youtube.com/channel/UCK0VozPhniGe4Eb2zcju1uw Narrator: https://www.youtube.com/channel/UCAYfH3griedXBdJX0awJTCg Gabriela: https://www.youtube.com/channel/UC9ho8fNWiCNRvzD-CskZl7A

    published: 24 Oct 2023
  • The Coffin (Trailer)

    DVD Release: August 2011 Buy Now:http://shop.breakingglasspictures.com/The-Coffin-853937002742.htm Su and Chris are two strangers whose lives have been struck by tragedy — Su has been diagnosed with lung cancer just days before her wedding and Chris' longtime girlfriend has fallen into a mysterious coma. When they both learn of a bizarre Thai ritual in which a living person lies in a coffin to reverse bad Karma, they both decide to partake in a mass funeral for the living. Soon, their lives have turned around — Su's cancer vanishes and Chris' girlfriend awakes from her coma — but the good fortune is short-lived. A series of terrifying paranormal events suggests that Su and Chris may have upset the Karmic balance of the universe by cleansing themselves of bad luck, and the people closest ...

    published: 22 Jun 2011
  • What is The Coffin of Andy and Leyley? Lets find out...

    What is The Coffin of Andy and Leyley and why is everyone playing it? Today we find out https://store.steampowered.com/app/2378900/The_Coffin_of_Andy_and_Leyley/ edited by @Goncy

    published: 26 Oct 2023
  • THE COFFIN (ZIM COMEDY)

    THE COFFIN (ZIM COMEDY)

    published: 27 Oct 2023
  • The Coffin of Andy and Leyley: The Cannibal Incest Horror Game That Twitter Hates

    Another day, another minor thing for Twitter to project all their anger and fury upon, is what they say, or what I just said. The Twitter outrage flavor of the day is towards the Indie Horror game, The Coffin of Andy and Leyley. The main reason why Twitter hates this game is that one of the endings shows a cannon incestuous relationship between the titular siblings, Andy and Leyley. Don’t get me wrong, I’m as disgusted by incest as much as the next person, but, I wouldn’t go about seething at it online. Let’s see how Twitter and Steam reacted to this game. Timestamps: Introduction: 0:00 Overview: 1:50 Twitter Reactions: 3:35 Steam Reviews: 6:14 Conclusion: 7:56 Music by Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 4.0 License

    published: 28 Oct 2023
  • The Amity Affliction "Coffin"

    Music & Merch: http://smarturl.it/TAA_Stores Spotify: https://spoti.fi/2vJeU7n Apple Music: https://geni.us/ELYOYLT?app=itunes Follow The Amity Affliction Instagram: https://www.instagram.com/theamityaffliction/ Twitter: https://twitter.com/amityaffliction Facebook: https://www.facebook.com/theamityafflictionofficial/ Website: https://www.theamityaffliction.net/ "Coffin" Lyrics There is a coffin in your heart Where all dreams go to die I knew it from the start I could see it in your eyes There’s fog on the glass There’s a whisper in the trees You’re gonna set the world on fire Gonna bury all our dreams There’s a coffin in your heart Where all dreams go to die

    published: 21 Feb 2020
Coffin Dance (Official Music Video HD)
2:36

Coffin Dance (Official Music Video HD)

  • Order:
  • Duration: 2:36
  • Uploaded Date: 30 Mar 2020
  • views: 447430787
Watch This : https://www.youtube.com/watch?v=w7DcDTb0zms I do not own the music and videos, neither ads or monetization. all the things up there goes respectively to the owners Music used : https://www.youtube.com/watch?v=iLBBRuVDOo4 Vicetone & Tony Igy - Astronomia #Memes #CoffinDance #Astronomia #CoffinMeme #Coffin #CoffinMeme #DanceMeme #CoffinDanceMeme
https://wn.com/Coffin_Dance_(Official_Music_Video_Hd)
Horror Game Where Your Sister Decides To Eat The Neighbor - The Coffin of Andy and Leyley
1:16:08

Horror Game Where Your Sister Decides To Eat The Neighbor - The Coffin of Andy and Leyley

  • Order:
  • Duration: 1:16:08
  • Uploaded Date: 26 Mar 2023
  • views: 2553670
The Coffin of Andy and Leyley is a horror game where a brother and sister decide to eat their neighbor. Game Playlist: https://tinyurl.com/39bzv6j6 Game Info: https://nemlei.itch.io/the-coffin-of-andy-and-leyley "Ummm" ヽ(・ω・`)----Crummy Personal Links Below This Line----(´・ω・)ノ My Masculine Patreon: https://goo.gl/e8XfHN My Cool Twitch: https://goo.gl/neioFL My Manly Twitter: http://goo.gl/wStB6o My Chill Instagram: https://goo.gl/8nPFzi My Weeaboo Manly Steam Group: http://goo.gl/v50fAa My Comfy Tiktok: https://tinyurl.com/czm4ewbp #thecoffinofandyandleyley
https://wn.com/Horror_Game_Where_Your_Sister_Decides_To_Eat_The_Neighbor_The_Coffin_Of_Andy_And_Leyley
My Sister Ate The Neighbor & Now We're On The Run - The Coffin of Andy and Leyley Episode 2 [ 1 ]
1:08:05

My Sister Ate The Neighbor & Now We're On The Run - The Coffin of Andy and Leyley Episode 2 [ 1 ]

  • Order:
  • Duration: 1:08:05
  • Uploaded Date: 15 Oct 2023
  • views: 1416542
The Coffin of Andy and Leyley returns in Episode 2 GRAVES as after eating our neighbor we go on to more misadventures and Ashley being Ashley. Video is part 1 of 2 Game Info: https://store.steampowered.com/app/2378900/The_Coffin_of_Andy_and_Leyley/ Game Playlist: https://tinyurl.com/39bzv6j6 "Ummmmmmm" ヽ(・ω・`)----Crummy Personal Links Below This Line----(´・ω・)ノ My Masculine Patreon: https://goo.gl/e8XfHN My Cool Twitch: https://goo.gl/neioFL My Manly Twitter: http://goo.gl/wStB6o My Chill Instagram: https://goo.gl/8nPFzi My Weeaboo Manly Steam Group: http://goo.gl/v50fAa My Comfy Tiktok: https://tinyurl.com/czm4ewbp #thecoffinofandyandleyley
https://wn.com/My_Sister_Ate_The_Neighbor_Now_We're_On_The_Run_The_Coffin_Of_Andy_And_Leyley_Episode_2_1
Hey Andy Sweetie! | The Coffin of Andy and Leyley Animation
0:34

Hey Andy Sweetie! | The Coffin of Andy and Leyley Animation

  • Order:
  • Duration: 0:34
  • Uploaded Date: 23 Apr 2023
  • views: 1045996
https://nemlei.itch.io/the-coffin-of-andy-and-leyley andyashley.swf The Coffin of Andy and Leyley is an RPG maker indie game that I played recently, and I think it has lots of potential. You should definitely check it out before the full game drops.
https://wn.com/Hey_Andy_Sweetie_|_The_Coffin_Of_Andy_And_Leyley_Animation
This Horror Game is a Cultural Experience… The Coffin of Andy and Leyley
1:14:24

This Horror Game is a Cultural Experience… The Coffin of Andy and Leyley

  • Order:
  • Duration: 1:14:24
  • Uploaded Date: 24 Oct 2023
  • views: 259474
The Coffin of Andy and Leyley Socials: Twitter: https://twitter.com/sauceddie Instagram: https://www.instagram.com/sauceddie TikTok: https://www.tiktok.com/@sauceddie Submit Your Scariest tiktoks! : https://www.reddit.com/r/scaryeddie/ Merch: https://theboys.store Discord: https://discord.gg/eddievr My friends: Mully: https://www.youtube.com/channel/UClS6zI81d6YaDy7yLjrCzEw Juicy: https://www.youtube.com/channel/UC_YkukM6o3D3GiKnFXLq0vQ Josh: https://www.youtube.com/channel/UCK0VozPhniGe4Eb2zcju1uw Narrator: https://www.youtube.com/channel/UCAYfH3griedXBdJX0awJTCg Gabriela: https://www.youtube.com/channel/UC9ho8fNWiCNRvzD-CskZl7A
https://wn.com/This_Horror_Game_Is_A_Cultural_Experience…_The_Coffin_Of_Andy_And_Leyley
The Coffin (Trailer)
2:24

The Coffin (Trailer)

  • Order:
  • Duration: 2:24
  • Uploaded Date: 22 Jun 2011
  • views: 125945
DVD Release: August 2011 Buy Now:http://shop.breakingglasspictures.com/The-Coffin-853937002742.htm Su and Chris are two strangers whose lives have been struck by tragedy — Su has been diagnosed with lung cancer just days before her wedding and Chris' longtime girlfriend has fallen into a mysterious coma. When they both learn of a bizarre Thai ritual in which a living person lies in a coffin to reverse bad Karma, they both decide to partake in a mass funeral for the living. Soon, their lives have turned around — Su's cancer vanishes and Chris' girlfriend awakes from her coma — but the good fortune is short-lived. A series of terrifying paranormal events suggests that Su and Chris may have upset the Karmic balance of the universe by cleansing themselves of bad luck, and the people closest to them may ultimately pay the price. International stars Karen Mok and Ananda Everingham star in this brooding tale about the fear of death and the cost of love. Based on a real-life ritual and shot on location in Bangkok, ancient Thai spiritual grounds, and an active crematorium, The Coffin is a nightmarish and ultimately moving supernatural thrill ride. #breakingglasspictures #movies #indiefilm #movie #cinema #film #filmdistribution #independentfilm #bgpics #breakingglass
https://wn.com/The_Coffin_(Trailer)
What is The Coffin of Andy and Leyley? Lets find out...
57:31

What is The Coffin of Andy and Leyley? Lets find out...

  • Order:
  • Duration: 57:31
  • Uploaded Date: 26 Oct 2023
  • views: 48864
What is The Coffin of Andy and Leyley and why is everyone playing it? Today we find out https://store.steampowered.com/app/2378900/The_Coffin_of_Andy_and_Leyley/ edited by @Goncy
https://wn.com/What_Is_The_Coffin_Of_Andy_And_Leyley_Lets_Find_Out...
THE COFFIN (ZIM COMEDY)
6:49

THE COFFIN (ZIM COMEDY)

  • Order:
  • Duration: 6:49
  • Uploaded Date: 27 Oct 2023
  • views: 46422
THE COFFIN (ZIM COMEDY)
https://wn.com/The_Coffin_(Zim_Comedy)
The Coffin of Andy and Leyley: The Cannibal Incest Horror Game That Twitter Hates
8:25

The Coffin of Andy and Leyley: The Cannibal Incest Horror Game That Twitter Hates

  • Order:
  • Duration: 8:25
  • Uploaded Date: 28 Oct 2023
  • views: 216
Another day, another minor thing for Twitter to project all their anger and fury upon, is what they say, or what I just said. The Twitter outrage flavor of the day is towards the Indie Horror game, The Coffin of Andy and Leyley. The main reason why Twitter hates this game is that one of the endings shows a cannon incestuous relationship between the titular siblings, Andy and Leyley. Don’t get me wrong, I’m as disgusted by incest as much as the next person, but, I wouldn’t go about seething at it online. Let’s see how Twitter and Steam reacted to this game. Timestamps: Introduction: 0:00 Overview: 1:50 Twitter Reactions: 3:35 Steam Reviews: 6:14 Conclusion: 7:56 Music by Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 4.0 License
https://wn.com/The_Coffin_Of_Andy_And_Leyley_The_Cannibal_Incest_Horror_Game_That_Twitter_Hates
The Amity Affliction "Coffin"
1:56

The Amity Affliction "Coffin"

  • Order:
  • Duration: 1:56
  • Uploaded Date: 21 Feb 2020
  • views: 459589
Music & Merch: http://smarturl.it/TAA_Stores Spotify: https://spoti.fi/2vJeU7n Apple Music: https://geni.us/ELYOYLT?app=itunes Follow The Amity Affliction Instagram: https://www.instagram.com/theamityaffliction/ Twitter: https://twitter.com/amityaffliction Facebook: https://www.facebook.com/theamityafflictionofficial/ Website: https://www.theamityaffliction.net/ "Coffin" Lyrics There is a coffin in your heart Where all dreams go to die I knew it from the start I could see it in your eyes There’s fog on the glass There’s a whisper in the trees You’re gonna set the world on fire Gonna bury all our dreams There’s a coffin in your heart Where all dreams go to die
https://wn.com/The_Amity_Affliction_Coffin
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 4:58:52

Coffin Dance (Official Music Video HD)

Watch This : https://www.youtube.com/watch?v=w7DcDTb0zms I do not own the music and videos, neither ads or monetization. all the things up there goes respectively to the owners Music used : https://www.youtube.com/watch?v=iLBBRuVDOo4 Vicetone & Tony Igy - Astronomia #Memes #CoffinDance #Astronomia #CoffinMeme #Coffin #CoffinMeme #DanceMeme #CoffinDanceMeme
2:36
Coffin Dance (Official Music Video HD)
Watch This : https://www.youtube.com/watch?v=w7DcDTb0zms I do not own the music and video...
published: 30 Mar 2020
Play in Full Screen
1:16:08
Horror Game Where Your Sister Decides To Eat The Neighbor - The Coffin of Andy and Leyley
The Coffin of Andy and Leyley is a horror game where a brother and sister decide to eat th...
published: 26 Mar 2023
Play in Full Screen
1:08:05
My Sister Ate The Neighbor & Now We're On The Run - The Coffin of Andy and Leyley Episode 2 [ 1 ]
The Coffin of Andy and Leyley returns in Episode 2 GRAVES as after eating our neighbor we ...
published: 15 Oct 2023
Play in Full Screen
0:34
Hey Andy Sweetie! | The Coffin of Andy and Leyley Animation
https://nemlei.itch.io/the-coffin-of-andy-and-leyley andyashley.swf The Coffin of Andy an...
published: 23 Apr 2023
Play in Full Screen
1:14:24
This Horror Game is a Cultural Experience… The Coffin of Andy and Leyley
The Coffin of Andy and Leyley Socials: Twitter: https://twitter.com/sauceddie Instagram: h...
published: 24 Oct 2023
Play in Full Screen
2:24
The Coffin (Trailer)
DVD Release: August 2011 Buy Now:http://shop.breakingglasspictures.com/The-Coffin-8539370...
published: 22 Jun 2011
Play in Full Screen
57:31
What is The Coffin of Andy and Leyley? Lets find out...
What is The Coffin of Andy and Leyley and why is everyone playing it? Today we find out ...
published: 26 Oct 2023
Play in Full Screen
6:49
THE COFFIN (ZIM COMEDY)
THE COFFIN (ZIM COMEDY)
published: 27 Oct 2023
Play in Full Screen
8:25
The Coffin of Andy and Leyley: The Cannibal Incest Horror Game That Twitter Hates
Another day, another minor thing for Twitter to project all their anger and fury upon, is ...
published: 28 Oct 2023
Play in Full Screen
1:56
The Amity Affliction "Coffin"
Music & Merch: http://smarturl.it/TAA_Stores Spotify: https://spoti.fi/2vJeU7n Apple Music...
published: 21 Feb 2020
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: the coffin

Edit

Brussels Is Hammering In The Last Nail In The Coffin Of Europe!

Bitchute 07 May 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Congressional Democrats Say Tariffs Are The “Nail In The Coffin” For Small Business

Forbes 07 May 2025
A new Democratic report says tariffs are raising costs, cutting jobs, and putting pressure on small businesses in manufacturing, construction, trucking, and retail ... .
Edit

Are ETAs final nail in the coffin for enjoying flying?

CyprusMail 03 May 2025
In fact, I used to love going to airports, just to watch the planes. That really was a thing in the 70s, and not just for me ... Then Covid happened and any residual bit of joy that could be squeezed out of the journey was abolished.
Edit

One More Nail In The Coffin Of Ad Agencies

Forbes 28 Apr 2025
AI is reshaping advertising by streamlining content creation, empowering freelancers, and disrupting the traditional agency model. The future belongs to open talent ... .
Edit

The Party of Crime? Democrats’ MS-13 Scandal Could Be the Final Nail in the Coffin

Bitchute 24 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Final nail is being driven into the coffin of terrorism: Adityanath in Kanpur

Indian Express 24 Apr 2025
31-year-old Shubham Dwivedi cremated with state honours .
Edit

The Coffin of Andrew And Renee - It's Mommy's Turn!

Rumble 18 Apr 2025
Click the Rumble article link to see the video ....
  • 1
×