'+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:

  • EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthrough

    This is the easiest and most comprehensive LIGHTNING SWORD / STAG SWORD build & upgrade guide in Citadelle Des Morts! Also, how to get all 3 lightning rods EVERY TIME (no more problems, guaranteed spawns) 0:00 Lightning Sword Build & Upgrade Guide 0:08 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:21 Lightning Rod #1: Deadshot Daiquiri 1:40 Lightning Rod #2: Metal Box 2:05 Lightning Rod #3: Rod From Zombie (Guaranteed Spawn) 3:40 Charging the Rods 3:09 All Lightning Sword HIDDEN Abilities To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Rave...

    published: 09 Dec 2024
  • EASY CITADELLE DES MORTS EASTER EGG GUIDE (Black Ops 6 Zombies MAIN EASTER EGG TUTORIAL GAMEPLAY)

    VOID SWORD SYMBOLS GUIDE (tap on your bone for solution): https://imgur.com/a/FJhNubh Lightning rod on a zombie can be found 100% when you have the un-upgraded lightning rod sword in hand and kill zombies next to Quick Revive! 0:00 Intro / Pack A Punch 0:19 Talk To Kraft 0:35 Base Sword 1:21 Light / Lion Sword Upgrade 2:16 Lightning / Stag Sword Upgrade 3:44 Void / Raven Sword Upgrade 6:01 Fire / Dragon Sword Upgrade 7:38 Horseshoe Ritual Item 8:33 Ra's Ankh Ritual Item 9:50 Paladin's Brooch Ritual Item 10:32 Raven's Talon Ritual Item 11:08 Code Wall Unlock 12:07 Book Pages 12:33 Trap Kills Book Pages 14:07 Opening Secret Room 14:29 Electric Incantation 15:05 Fire Incantation 15:36 Light Incantation 16:07 Dark Incantation / Mystic Orb 16:45 Light Orb (stand in blue ground orbs) 17:33 Fire...

    published: 06 Dec 2024
  • EASY FIRE DRAGON SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Fast Tutorial/Walkthrough

    This is the easiest and most comprehensive FIRE SWORD / DRAGON SWORD build & upgrade guide in Citadelle Des Morts! Also, the fire sword's HIDDEN ABILITIES are explained! 0:00 Fire Sword Build & Upgrade Guide 0:07 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:21 3x Fire Braziers 2:56 Fire Sword HIDDEN ABILITIES To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Raven / Void Sword Guide: https://www.youtube.com/watch?v=MRG9yCnCwxw 🟥 Fire / Dragon / Red Sword Guide: https://www.youtube.com/watch?v=8e9Mk9BfIHk 🟦 Lightning / Stag / Electric Sword G...

    published: 09 Dec 2024
  • Video Game Easter Eggs #145 (Fortnite, Black Ops 6, Forgive Me Father 2 & More)

    In todays episode of video game Easter eggs we take a look at Fortnite Chapter 6 Easter eggs, Call Of Duty Black Ops 6 Easter eggs, Forgive Me Father 2 Easter eggs, Duck Detective: The Secret Salami Easter eggs, Counter Strike 2 Easter eggs, 420Blazeit2 Easter eggs and more! BECOME A PATRON TODAY!: https://www.patreon.com/user?u=3705874 BUSINESS EMAIL: captaineggcellent@saulderson.com INSTAGRAM: https://goo.gl/yynZuD TWITTER: https://goo.gl/PFqGhx TIKTOK: https://www.tiktok.com/@captaineggcellent More videos like this one: 50 Creepy and disturbing Easter eggs in video games: https://www.youtube.com/watch?v=8MRxEMb-FpI 27 INSANE Hidden Details In Batman Arkham Knight: https://youtu.be/OyEetp82vu0?si=oGe2D7XZ0LRK9UTt Video Game Easter Eggs Playlist: https://youtube.com/playlist?list=PL3...

    published: 08 Dec 2024
  • "CITADELLE DES MORTS" EASTER EGG GUIDE! - SOLO FULL EASTER EGG TUTORIAL (Black Ops 6 Zombies)

    BLACK OPS 6 ZOMBIES CITADELLE DES MORTS EASTER EGG GUIDE: FULL WALKTHROUGH! ►If you enjoyed the video, please consider hitting 👍 LIKE and ✅ Subscribe for more! ►Full Live Hunt: https://www.youtube.com/live/79LfOqXFP-A?si=fKvF1uhgT0q4Q1vD In this video, I am showing you how to complete the Citadelle Des Morts Easter Egg. Giving you a full Citadelle Des Morts Easter Egg Guide on how to complete the Black Ops 6 Zombies LCitadelle Des Morts Tutorial going over all Citadelle Des Morts Easter Egg Steps and full Black Ops 6 Zombies Easter Egg Completion. This is the Black Ops 6 Zombies Citadelle Des Morts Easter Egg with Citadelle Des Morts Boss Fight & Citadelle Des Morts Ending Cutscene. ►Raven/Void Sword Puzzle Answers Site by u/tcnoco: https://hub.tcno.co/games/bo6/raven/ ►Void Sword Puzzl...

    published: 06 Dec 2024
  • EASY LIGHT LION SWORD BUILD UPGRADE GUIDE & Hidden Ability Explained! Citadelle Des Morts Easter Egg

    This is the easiest and most comprehensive LIGHT SWORD / LION SWORD build & upgrade guide in Citadelle Des Morts! The code solution is CLEARLY EXPLAINED plus sword HIDDEN ABILITIES explained! Cheatsheet timestamp linked in chapters below! 0:00 Light Sword Build & Upgrade Guide 0:07 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:22 Glowing Yellow Bugs 2:16 Secret Door Code CHEATSHEET 3:09 All Light Sword HIDDEN Abilities To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Raven / Void Sword Guide: https://www.youtube.com/watch?v=MRG9yCnCwxw 🟥 Fir...

    published: 09 Dec 2024
  • ULTIMATE CITADELLE DES MORTS EASTER EGG GUIDE! (ALL SWORDS + SPAWN LOCATIONS TUTORIAL)

    CHARGED HORSESHOE CAN ALSO SPAWN ON THE OTHER SIDE! Look around for a Storm Cloud after you take the Cannon & you will find it there: https://prnt.sc/8le4T-NHmZ_y If you're still having any trouble, this vid has a bunch of pro strats to SKIP STEPS and make it easier! https://www.youtube.com/watch?v=nMg8Njn8EFU Milo Merch: http://milomerch.com 🔥🔥🔥 🥞 Follow Milo here: 🎮 Twitch: http://twitch.tv/MrRoflWaffles 🐦 Twitter: https://twitter.com/MrRoflWaffles 📸 Instagram: https://www.instagram.com/milo_bc/ 🧑 TikTok: https://www.tiktok.com/@mrroflwaffles 💻 Reddit: https://www.reddit.com/r/mrroflwaffles/ 🤙 Discord: https://discord.com/invite/waffles 📘 FaceBook: https://www.facebook.com/MrRoflWaffles 📸 Snapchat: https://www.snapchat.com/add/mrrw

    published: 06 Dec 2024
  • 15 Amazing Little Details & Easter Eggs in Indiana Jones and the Great Circle

    Let's take a look at 15 hidden details, easter eggs and secrets in Indiana Jones and the Great Circle. 🔴Subscribe: https://www.youtube.com/@DanAllenGaming?sub_confirmation=1 💪 Support the Channel: https://www.youtube.com/channel/UCcTa20zpKM6CkcvocFXVe6A/join 🎙️Dan Allen Gaming Podcast: https://www.youtube.com/playlist?list=PLp-XS7Tadj5JC6KstAqXKFrCC-jLuQAd9 🎮 Follow Dan here: 📸 https://www.instagram.com/DanAllenGaming 🐦 https://www.twitter.com/DanAllenGaming 📱 https://www.tiktok.com/@danallengaming 📘 https://www.facebook.com/DanAllenGaming ---------------------------------------------------------------------------- #indianajones #indianajonesandthegreatcircle

    published: 09 Dec 2024
  • BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE! (COMPLETE BO6 ZOMBIES EASTER EGG WALKTHROUGH)

    BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE: FULL EASTER EGG WALKTHROUGH! ►TERMINUS BOSS FIGHT STRATEGY GUIDE: https://youtu.be/DbjjEIrqWcc?si=ZEgvWhKAviEU9jYn ►CITADELLE DES MORTS EASTER EGG GUIDE: https://youtu.be/hd4klqVCaUg ►LIBERTY FALLS EASTER EGG GUIDE: https://youtu.be/cIAoz2ebBoU In this video, I am showing you how to complete the Liberty Falls Easter Egg. Giving you a full Liberty Falls Easter Egg Guide on how to complete the Black Ops 6 Zombies Liberty Falls Easter Egg Tutorial going over all Liberty Falls Easter Egg Steps and full Black Ops 6 Zombies Easter Egg Completion. This is the Black Ops 6 Zombies Liberty Falls Easter Egg with Liberty Falls Boss Fight & Liberty Falls Ending Cutscene. ➖ Follow me! ➖ 🐥 Twitter - http://www.twitter.com/MrDalekJD 📘 Facebook - http://fac...

    published: 26 Oct 2024
EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthrough
5:55

EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthrough

  • Order:
  • Duration: 5:55
  • Uploaded Date: 09 Dec 2024
  • views: 28558
This is the easiest and most comprehensive LIGHTNING SWORD / STAG SWORD build & upgrade guide in Citadelle Des Morts! Also, how to get all 3 lightning rods EVERY TIME (no more problems, guaranteed spawns) 0:00 Lightning Sword Build & Upgrade Guide 0:08 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:21 Lightning Rod #1: Deadshot Daiquiri 1:40 Lightning Rod #2: Metal Box 2:05 Lightning Rod #3: Rod From Zombie (Guaranteed Spawn) 3:40 Charging the Rods 3:09 All Lightning Sword HIDDEN Abilities To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Raven / Void Sword Guide: https://www.youtube.com/watch?v=MRG9yCnCwxw 🟥 Fire / Dragon / Red Sword Guide: https://www.youtube.com/watch?v=8e9Mk9BfIHk 🟦 Lightning / Stag / Electric Sword Guide: https://www.youtube.com/watch?v=NFZqrI6ygGw ⬛ ALL SWORDS RANKING Worst to Best: https://www.youtube.com/watch?v=VH9PUmnFukU ⬜ Citadelle Des Morts Main Quest Easter Egg Guide: https://www.youtube.com/watch?v=Qy8OU0A9aLo 🥞 Follow Milo here: 🎮 Twitch: http://twitch.tv/MrRoflWaffles 🐦 Twitter: https://twitter.com/MrRoflWaffles 📸 Instagram: https://www.instagram.com/milo_bc/ 🧑 TikTok: https://www.tiktok.com/@mrroflwaffles 💻 Reddit: https://www.reddit.com/r/mrroflwaffles/ 🤙 Discord: https://discord.com/invite/waffles 📘 FaceBook: https://www.facebook.com/MrRoflWaffles 📸 Snapchat: https://www.snapchat.com/add/mrrw
https://wn.com/Easy_Lightning_Stag_Sword_Build_Upgrade_Guide_Citadelle_Des_Morts_Easter_Egg_Tutorial_Walkthrough
EASY CITADELLE DES MORTS EASTER EGG GUIDE (Black Ops 6 Zombies MAIN EASTER EGG TUTORIAL GAMEPLAY)
21:14

EASY CITADELLE DES MORTS EASTER EGG GUIDE (Black Ops 6 Zombies MAIN EASTER EGG TUTORIAL GAMEPLAY)

  • Order:
  • Duration: 21:14
  • Uploaded Date: 06 Dec 2024
  • views: 1423846
VOID SWORD SYMBOLS GUIDE (tap on your bone for solution): https://imgur.com/a/FJhNubh Lightning rod on a zombie can be found 100% when you have the un-upgraded lightning rod sword in hand and kill zombies next to Quick Revive! 0:00 Intro / Pack A Punch 0:19 Talk To Kraft 0:35 Base Sword 1:21 Light / Lion Sword Upgrade 2:16 Lightning / Stag Sword Upgrade 3:44 Void / Raven Sword Upgrade 6:01 Fire / Dragon Sword Upgrade 7:38 Horseshoe Ritual Item 8:33 Ra's Ankh Ritual Item 9:50 Paladin's Brooch Ritual Item 10:32 Raven's Talon Ritual Item 11:08 Code Wall Unlock 12:07 Book Pages 12:33 Trap Kills Book Pages 14:07 Opening Secret Room 14:29 Electric Incantation 15:05 Fire Incantation 15:36 Light Incantation 16:07 Dark Incantation / Mystic Orb 16:45 Light Orb (stand in blue ground orbs) 17:33 Fire Orb 17:52 Electric Orb 18:27 Void Orb 18:47 Secret Room 19:08 Boss Fight 🥰 Help me reach 5,000,000 Subscribers: https://www.youtube.com/channel/UCP9tAErY_RlX4RFKssE4ogg?sub_confirmation=1 🎧 DJ Sets & Shows: https://www.youtube.com/@UCYi6gYb9DaQWuN9xSYNr3yw 🤠 Gaming Reaction Channel: https://www.youtube.com/channel/UCUuZD1beHND0mnjJL3ZNhCw?sub_confirmation=1 🐍 Shorts Channel: https://www.youtube.com/channel/UClkEE3fq8i3yjFTqotqd3Rg?sub_confirmation=1 ► SOCIAL MEDIAS 🐦 Twitter: http://www.twitter.com/NoahJ456 📷 Instagram: http://www.instagram.com/NoahJ456 📞 Discord: https://discord.gg/NoahJ456 👕 MERCH: http://www.NoahJ456Shop.com 🖥 Equipment I Use: https://www.amazon.com/shop/noahj456 All of my FULL video playlists: https://www.youtube.com/user/NoahJ456/playlists Business Inquiries: noahjbusiness@gmail.com Thanks for watching, and much love! -NoahJ456
https://wn.com/Easy_Citadelle_Des_Morts_Easter_Egg_Guide_(Black_Ops_6_Zombies_Main_Easter_Egg_Tutorial_Gameplay)
EASY FIRE DRAGON SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Fast Tutorial/Walkthrough
4:21

EASY FIRE DRAGON SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Fast Tutorial/Walkthrough

  • Order:
  • Duration: 4:21
  • Uploaded Date: 09 Dec 2024
  • views: 19201
This is the easiest and most comprehensive FIRE SWORD / DRAGON SWORD build & upgrade guide in Citadelle Des Morts! Also, the fire sword's HIDDEN ABILITIES are explained! 0:00 Fire Sword Build & Upgrade Guide 0:07 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:21 3x Fire Braziers 2:56 Fire Sword HIDDEN ABILITIES To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Raven / Void Sword Guide: https://www.youtube.com/watch?v=MRG9yCnCwxw 🟥 Fire / Dragon / Red Sword Guide: https://www.youtube.com/watch?v=8e9Mk9BfIHk 🟦 Lightning / Stag / Electric Sword Guide: https://www.youtube.com/watch?v=NFZqrI6ygGw ⬛ ALL SWORDS RANKING Worst to Best: https://www.youtube.com/watch?v=VH9PUmnFukU ⬜ Citadelle Des Morts Main Quest Easter Egg Guide: https://www.youtube.com/watch?v=Qy8OU0A9aLo 🥞 Follow Milo here: 🎮 Twitch: http://twitch.tv/MrRoflWaffles 🐦 Twitter: https://twitter.com/MrRoflWaffles 📸 Instagram: https://www.instagram.com/milo_bc/ 🧑 TikTok: https://www.tiktok.com/@mrroflwaffles 💻 Reddit: https://www.reddit.com/r/mrroflwaffles/ 🤙 Discord: https://discord.com/invite/waffles 📘 FaceBook: https://www.facebook.com/MrRoflWaffles 📸 Snapchat: https://www.snapchat.com/add/mrrw
https://wn.com/Easy_Fire_Dragon_Sword_Build_Upgrade_Guide_Citadelle_Des_Morts_Easter_Egg_Fast_Tutorial_Walkthrough
Video Game Easter Eggs #145 (Fortnite, Black Ops 6, Forgive Me Father 2 & More)
9:45

Video Game Easter Eggs #145 (Fortnite, Black Ops 6, Forgive Me Father 2 & More)

  • Order:
  • Duration: 9:45
  • Uploaded Date: 08 Dec 2024
  • views: 45791
In todays episode of video game Easter eggs we take a look at Fortnite Chapter 6 Easter eggs, Call Of Duty Black Ops 6 Easter eggs, Forgive Me Father 2 Easter eggs, Duck Detective: The Secret Salami Easter eggs, Counter Strike 2 Easter eggs, 420Blazeit2 Easter eggs and more! BECOME A PATRON TODAY!: https://www.patreon.com/user?u=3705874 BUSINESS EMAIL: captaineggcellent@saulderson.com INSTAGRAM: https://goo.gl/yynZuD TWITTER: https://goo.gl/PFqGhx TIKTOK: https://www.tiktok.com/@captaineggcellent More videos like this one: 50 Creepy and disturbing Easter eggs in video games: https://www.youtube.com/watch?v=8MRxEMb-FpI 27 INSANE Hidden Details In Batman Arkham Knight: https://youtu.be/OyEetp82vu0?si=oGe2D7XZ0LRK9UTt Video Game Easter Eggs Playlist: https://youtube.com/playlist?list=PL3a3nWpZVpiuZI4uej9LPwsyVwJjCiPnY&si=05fCaMu1AQTmUKmc Hidden Video Game Details Playlist: https://youtube.com/playlist?list=PL3a3nWpZVpisXz7WYsDeyaoLr2xe6T1Tf&si=AZ4dbY9suvvDmHNu Music used: Lakey Inspire - Blue Boi: https://www.youtube.com/watch?v=wAukvwLCVbM
https://wn.com/Video_Game_Easter_Eggs_145_(Fortnite,_Black_Ops_6,_Forgive_Me_Father_2_More)
"CITADELLE DES MORTS" EASTER EGG GUIDE! - SOLO FULL EASTER EGG TUTORIAL (Black Ops 6 Zombies)
23:55

"CITADELLE DES MORTS" EASTER EGG GUIDE! - SOLO FULL EASTER EGG TUTORIAL (Black Ops 6 Zombies)

  • Order:
  • Duration: 23:55
  • Uploaded Date: 06 Dec 2024
  • views: 1088720
BLACK OPS 6 ZOMBIES CITADELLE DES MORTS EASTER EGG GUIDE: FULL WALKTHROUGH! ►If you enjoyed the video, please consider hitting 👍 LIKE and ✅ Subscribe for more! ►Full Live Hunt: https://www.youtube.com/live/79LfOqXFP-A?si=fKvF1uhgT0q4Q1vD In this video, I am showing you how to complete the Citadelle Des Morts Easter Egg. Giving you a full Citadelle Des Morts Easter Egg Guide on how to complete the Black Ops 6 Zombies LCitadelle Des Morts Tutorial going over all Citadelle Des Morts Easter Egg Steps and full Black Ops 6 Zombies Easter Egg Completion. This is the Black Ops 6 Zombies Citadelle Des Morts Easter Egg with Citadelle Des Morts Boss Fight & Citadelle Des Morts Ending Cutscene. ►Raven/Void Sword Puzzle Answers Site by u/tcnoco: https://hub.tcno.co/games/bo6/raven/ ►Void Sword Puzzle References: https://imgur.com/a/MGYNT5j ►https://imgur.com/a/AsPhaD6 ►BEST Weapon for the Boss Fight: https://youtu.be/SQyrb4A38VE ➖ Follow me! ➖ 🐥 Twitter - http://www.twitter.com/MrDalekJD 📘 Facebook - http://facebook.com/MrDalekJD 📸 Instagram - http://instagram.com/MrDalekJD 🚨Second Channel - https://www.youtube.com/channel/UCmn6qb15MOEDxa8DyqxIzhQ 👾 Join the MrDalekJD Discord - https://discord.gg/Wc28nWzkmB ➖ The equipment I use! ➖ 🎧 The headset I use - https://astro.family/mrdalekjdEMEA Subscribe for more videos! - MrDalekJD Business Enquiries: business@mrdalekjd.com Let's keep the comment section AWESOME to make sure everyone has a good time! Be sure to thumbs up great comments and ignore negative or hateful ones. Thanks and enjoy! If you enjoyed the video & want to see more Call of Duty, press that Like button! #BlackOps6Zombies #BlackOps6 #CallofDuty #callofdutyzombies BLACK OPS 6 ZOMBIES CITADELLE DES MORTS EASTER EGG GUIDE! (FULL BO6 ZOMBIES EASTER EGG WALKTHROUGH) Timestamps: 0:00 - Intro 0:07 - Pack A Punch 0:42 - Speak To Krafft 0:50 - How To Build A Sword 1:14 - Dragon Sword Upgrade 2:31 - Lion Sword Upgrade 3:34 - Stag Sword Upgrade 4:50 - Raven Sword Upgrade 8:57 - All Page Locations 9:47 - Symbol Wall Step 11:20 - Book Power Trap Step 13:10 - Pegasus Horseshoe Ritual Item 13:49 - Ra's Ankh Ritual Item 14:34 - Ravens Talon Ritual Item 15:08 - Paladins Broach Ritual Item 15:53 - Paladins Broach Upgrade 16:10 - Ra's Ankh Upgrade 16:19 - Pegasus Horseshoe Upgrade 16:24 - Ravens Talon Upgrade 16:30 - Swords and Incantation Order Step 16:52 - Raven Incantation Location & Raven Sword Knight 17:37 - Lion Incantation Location & Lion Sword Knight 17:52 - Stag Incantation Location & Stag Sword Knight 18:02 - Dragon Incantation Location & Dragon Sword Knight 18:10 - Mystic Orb Challenge 1 18:53 - Mystic Orb Challenge 2 19:20 - Mystic Orb Challenge 3 19:39 - Mystic Orb Challenge 4 19:50 - How To Activate Boss Fight 20:32 - Boss Fight 23:40 - Outro
https://wn.com/Citadelle_Des_Morts_Easter_Egg_Guide_Solo_Full_Easter_Egg_Tutorial_(Black_Ops_6_Zombies)
EASY LIGHT LION SWORD BUILD UPGRADE GUIDE & Hidden Ability Explained! Citadelle Des Morts Easter Egg
4:33

EASY LIGHT LION SWORD BUILD UPGRADE GUIDE & Hidden Ability Explained! Citadelle Des Morts Easter Egg

  • Order:
  • Duration: 4:33
  • Uploaded Date: 09 Dec 2024
  • views: 124970
This is the easiest and most comprehensive LIGHT SWORD / LION SWORD build & upgrade guide in Citadelle Des Morts! The code solution is CLEARLY EXPLAINED plus sword HIDDEN ABILITIES explained! Cheatsheet timestamp linked in chapters below! 0:00 Light Sword Build & Upgrade Guide 0:07 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:22 Glowing Yellow Bugs 2:16 Secret Door Code CHEATSHEET 3:09 All Light Sword HIDDEN Abilities To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Raven / Void Sword Guide: https://www.youtube.com/watch?v=MRG9yCnCwxw 🟥 Fire / Dragon / Red Sword Guide: https://www.youtube.com/watch?v=8e9Mk9BfIHk 🟦 Lightning / Stag / Electric Sword Guide: https://www.youtube.com/watch?v=NFZqrI6ygGw ⬛ ALL SWORDS RANKING Worst to Best: https://www.youtube.com/watch?v=VH9PUmnFukU ⬜ Citadelle Des Morts Main Quest Easter Egg Guide: https://www.youtube.com/watch?v=Qy8OU0A9aLo 🥞 Follow Milo here: 🎮 Twitch: http://twitch.tv/MrRoflWaffles 🐦 Twitter: https://twitter.com/MrRoflWaffles 📸 Instagram: https://www.instagram.com/milo_bc/ 🧑 TikTok: https://www.tiktok.com/@mrroflwaffles 💻 Reddit: https://www.reddit.com/r/mrroflwaffles/ 🤙 Discord: https://discord.com/invite/waffles 📘 FaceBook: https://www.facebook.com/MrRoflWaffles 📸 Snapchat: https://www.snapchat.com/add/mrrw
https://wn.com/Easy_Light_Lion_Sword_Build_Upgrade_Guide_Hidden_Ability_Explained_Citadelle_Des_Morts_Easter_Egg
ULTIMATE CITADELLE DES MORTS EASTER EGG GUIDE! (ALL SWORDS + SPAWN LOCATIONS TUTORIAL)
25:54

ULTIMATE CITADELLE DES MORTS EASTER EGG GUIDE! (ALL SWORDS + SPAWN LOCATIONS TUTORIAL)

  • Order:
  • Duration: 25:54
  • Uploaded Date: 06 Dec 2024
  • views: 3338785
CHARGED HORSESHOE CAN ALSO SPAWN ON THE OTHER SIDE! Look around for a Storm Cloud after you take the Cannon & you will find it there: https://prnt.sc/8le4T-NHmZ_y If you're still having any trouble, this vid has a bunch of pro strats to SKIP STEPS and make it easier! https://www.youtube.com/watch?v=nMg8Njn8EFU Milo Merch: http://milomerch.com 🔥🔥🔥 🥞 Follow Milo here: 🎮 Twitch: http://twitch.tv/MrRoflWaffles 🐦 Twitter: https://twitter.com/MrRoflWaffles 📸 Instagram: https://www.instagram.com/milo_bc/ 🧑 TikTok: https://www.tiktok.com/@mrroflwaffles 💻 Reddit: https://www.reddit.com/r/mrroflwaffles/ 🤙 Discord: https://discord.com/invite/waffles 📘 FaceBook: https://www.facebook.com/MrRoflWaffles 📸 Snapchat: https://www.snapchat.com/add/mrrw
https://wn.com/Ultimate_Citadelle_Des_Morts_Easter_Egg_Guide_(All_Swords_Spawn_Locations_Tutorial)
15 Amazing Little Details & Easter Eggs in Indiana Jones and the Great Circle
5:48

15 Amazing Little Details & Easter Eggs in Indiana Jones and the Great Circle

  • Order:
  • Duration: 5:48
  • Uploaded Date: 09 Dec 2024
  • views: 80761
Let's take a look at 15 hidden details, easter eggs and secrets in Indiana Jones and the Great Circle. 🔴Subscribe: https://www.youtube.com/@DanAllenGaming?sub_confirmation=1 💪 Support the Channel: https://www.youtube.com/channel/UCcTa20zpKM6CkcvocFXVe6A/join 🎙️Dan Allen Gaming Podcast: https://www.youtube.com/playlist?list=PLp-XS7Tadj5JC6KstAqXKFrCC-jLuQAd9 🎮 Follow Dan here: 📸 https://www.instagram.com/DanAllenGaming 🐦 https://www.twitter.com/DanAllenGaming 📱 https://www.tiktok.com/@danallengaming 📘 https://www.facebook.com/DanAllenGaming ---------------------------------------------------------------------------- #indianajones #indianajonesandthegreatcircle
https://wn.com/15_Amazing_Little_Details_Easter_Eggs_In_Indiana_Jones_And_The_Great_Circle
BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE! (COMPLETE BO6 ZOMBIES EASTER EGG WALKTHROUGH)
17:19

BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE! (COMPLETE BO6 ZOMBIES EASTER EGG WALKTHROUGH)

  • Order:
  • Duration: 17:19
  • Uploaded Date: 26 Oct 2024
  • views: 1692366
BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE: FULL EASTER EGG WALKTHROUGH! ►TERMINUS BOSS FIGHT STRATEGY GUIDE: https://youtu.be/DbjjEIrqWcc?si=ZEgvWhKAviEU9jYn ►CITADELLE DES MORTS EASTER EGG GUIDE: https://youtu.be/hd4klqVCaUg ►LIBERTY FALLS EASTER EGG GUIDE: https://youtu.be/cIAoz2ebBoU In this video, I am showing you how to complete the Liberty Falls Easter Egg. Giving you a full Liberty Falls Easter Egg Guide on how to complete the Black Ops 6 Zombies Liberty Falls Easter Egg Tutorial going over all Liberty Falls Easter Egg Steps and full Black Ops 6 Zombies Easter Egg Completion. This is the Black Ops 6 Zombies Liberty Falls Easter Egg with Liberty Falls Boss Fight & Liberty Falls Ending Cutscene. ➖ Follow me! ➖ 🐥 Twitter - http://www.twitter.com/MrDalekJD 📘 Facebook - http://facebook.com/MrDalekJD 📸 Instagram - http://instagram.com/MrDalekJD 🚨Second Channel - https://www.youtube.com/channel/UCmn6qb15MOEDxa8DyqxIzhQ 👾 Join the MrDalekJD Discord - https://discord.gg/Wc28nWzkmB ➖ The equipment I use! ➖ 🎧 The headset I use - https://astro.family/mrdalekjdEMEA Subscribe for more videos! - MrDalekJD Business Enquiries: business@mrdalekjd.com Let's keep the comment section AWESOME to make sure everyone has a good time! Be sure to thumbs up great comments and ignore negative or hateful ones. Thanks and enjoy! If you enjoyed the video & want to see more Call of Duty, press that Like button! #BlackOps6Zombies #BlackOps6 #CallofDuty #callofdutyzombies
https://wn.com/Black_Ops_6_Zombies_Terminus_Easter_Egg_Guide_(Complete_Bo6_Zombies_Easter_Egg_Walkthrough)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthrough
    5:55
    EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthroughremove from playlist
  • EASY CITADELLE DES MORTS EASTER EGG GUIDE (Black Ops 6 Zombies MAIN EASTER EGG TUTORIAL GAMEPLAY)
    21:14
    EASY CITADELLE DES MORTS EASTER EGG GUIDE (Black Ops 6 Zombies MAIN EASTER EGG TUTORIAL GAMEPLAY)remove from playlist
  • EASY FIRE DRAGON SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Fast Tutorial/Walkthrough
    4:21
    EASY FIRE DRAGON SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Fast Tutorial/Walkthroughremove from playlist
  • Video Game Easter Eggs #145 (Fortnite, Black Ops 6, Forgive Me Father 2 & More)
    9:45
    Video Game Easter Eggs #145 (Fortnite, Black Ops 6, Forgive Me Father 2 & More)remove from playlist
  • 23:55
    "CITADELLE DES MORTS" EASTER EGG GUIDE! - SOLO FULL EASTER EGG TUTORIAL (Black Ops 6 Zombies)remove from playlist
  • EASY LIGHT LION SWORD BUILD UPGRADE GUIDE & Hidden Ability Explained! Citadelle Des Morts Easter Egg
    4:33
    EASY LIGHT LION SWORD BUILD UPGRADE GUIDE & Hidden Ability Explained! Citadelle Des Morts Easter Eggremove from playlist
  • ULTIMATE CITADELLE DES MORTS EASTER EGG GUIDE! (ALL SWORDS + SPAWN LOCATIONS TUTORIAL)
    25:54
    ULTIMATE CITADELLE DES MORTS EASTER EGG GUIDE! (ALL SWORDS + SPAWN LOCATIONS TUTORIAL)remove from playlist
  • 15 Amazing Little Details & Easter Eggs in Indiana Jones and the Great Circle
    5:48
    15 Amazing Little Details & Easter Eggs in Indiana Jones and the Great Circleremove from playlist
  • BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE! (COMPLETE BO6 ZOMBIES EASTER EGG WALKTHROUGH)
    17:19
    BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE! (COMPLETE BO6 ZOMBIES EASTER EGG WALKTHROUGH)remove from playlist
PLAYLIST TIME:

EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthrough

This is the easiest and most comprehensive LIGHTNING SWORD / STAG SWORD build & upgrade guide in Citadelle Des Morts! Also, how to get all 3 lightning rods EVERY TIME (no more problems, guaranteed spawns) 0:00 Lightning Sword Build & Upgrade Guide 0:08 Opening PaP & Krafft 0:27 Getting Stamp & Base Sword 1:21 Lightning Rod #1: Deadshot Daiquiri 1:40 Lightning Rod #2: Metal Box 2:05 Lightning Rod #3: Rod From Zombie (Guaranteed Spawn) 3:40 Charging the Rods 3:09 All Lightning Sword HIDDEN Abilities To get stamps early, it seems like you need to get to Krafft super early in your game (before bugs), and then there's a low chance that the Helm zombies will spawn before round 10. Still investigating! 🟨 Light / Lion / Wind Sword Guide: https://www.youtube.com/watch?v=Ya2_kqXNI8s 🟪 Dark / Raven / Void Sword Guide: https://www.youtube.com/watch?v=MRG9yCnCwxw 🟥 Fire / Dragon / Red Sword Guide: https://www.youtube.com/watch?v=8e9Mk9BfIHk 🟦 Lightning / Stag / Electric Sword Guide: https://www.youtube.com/watch?v=NFZqrI6ygGw ⬛ ALL SWORDS RANKING Worst to Best: https://www.youtube.com/watch?v=VH9PUmnFukU ⬜ Citadelle Des Morts Main Quest Easter Egg Guide: https://www.youtube.com/watch?v=Qy8OU0A9aLo 🥞 Follow Milo here: 🎮 Twitch: http://twitch.tv/MrRoflWaffles 🐦 Twitter: https://twitter.com/MrRoflWaffles 📸 Instagram: https://www.instagram.com/milo_bc/ 🧑 TikTok: https://www.tiktok.com/@mrroflwaffles 💻 Reddit: https://www.reddit.com/r/mrroflwaffles/ 🤙 Discord: https://discord.com/invite/waffles 📘 FaceBook: https://www.facebook.com/MrRoflWaffles 📸 Snapchat: https://www.snapchat.com/add/mrrw
5:55
EASY LIGHTNING STAG SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Tutorial/Walkthrough
This is the easiest and most comprehensive LIGHTNING SWORD / STAG SWORD build & upgrade gu...
published: 09 Dec 2024
Play in Full Screen
21:14
EASY CITADELLE DES MORTS EASTER EGG GUIDE (Black Ops 6 Zombies MAIN EASTER EGG TUTORIAL GAMEPLAY)
VOID SWORD SYMBOLS GUIDE (tap on your bone for solution): https://imgur.com/a/FJhNubh Ligh...
published: 06 Dec 2024
Play in Full Screen
4:21
EASY FIRE DRAGON SWORD BUILD UPGRADE GUIDE! Citadelle Des Morts Easter Egg Fast Tutorial/Walkthrough
This is the easiest and most comprehensive FIRE SWORD / DRAGON SWORD build & upgrade guide...
published: 09 Dec 2024
Play in Full Screen
9:45
Video Game Easter Eggs #145 (Fortnite, Black Ops 6, Forgive Me Father 2 & More)
In todays episode of video game Easter eggs we take a look at Fortnite Chapter 6 Easter eg...
published: 08 Dec 2024
Play in Full Screen
23:55
"CITADELLE DES MORTS" EASTER EGG GUIDE! - SOLO FULL EASTER EGG TUTORIAL (Black Ops 6 Zombies)
BLACK OPS 6 ZOMBIES CITADELLE DES MORTS EASTER EGG GUIDE: FULL WALKTHROUGH! ►If you enjoye...
published: 06 Dec 2024
Play in Full Screen
4:33
EASY LIGHT LION SWORD BUILD UPGRADE GUIDE & Hidden Ability Explained! Citadelle Des Morts Easter Egg
This is the easiest and most comprehensive LIGHT SWORD / LION SWORD build & upgrade guide ...
published: 09 Dec 2024
Play in Full Screen
25:54
ULTIMATE CITADELLE DES MORTS EASTER EGG GUIDE! (ALL SWORDS + SPAWN LOCATIONS TUTORIAL)
CHARGED HORSESHOE CAN ALSO SPAWN ON THE OTHER SIDE! Look around for a Storm Cloud after yo...
published: 06 Dec 2024
Play in Full Screen
5:48
15 Amazing Little Details & Easter Eggs in Indiana Jones and the Great Circle
Let's take a look at 15 hidden details, easter eggs and secrets in Indiana Jones and the G...
published: 09 Dec 2024
Play in Full Screen
17:19
BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE! (COMPLETE BO6 ZOMBIES EASTER EGG WALKTHROUGH)
BLACK OPS 6 ZOMBIES TERMINUS EASTER EGG GUIDE: FULL EASTER EGG WALKTHROUGH! ►TERMINUS BOSS...
published: 26 Oct 2024
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: easter egg

Edit

LETTERS FROM LOCKERLY: Easter egg hunt | The Union-Recorder

The Union-Recorder 07 May 2025
Lockerly Arboretum hosted its Easter egg hunt on April 19, welcoming families from across the city and beyond to enjoy snacks, games and egg hunting throughout the expansive property ... The Easter egg ...
Edit

Grand Theft Auto 6 Fans Spot Vice City Easter Egg in Promo Images

Game Rant 07 May 2025
With Grand Theft Auto 6set to take fans back to the neon-kissed streets of Vice City, fans are ...
Edit

Lorde says her Met Gala dress was an “Easter egg” for new album ‘Virgin’: “It ...

NME 07 May 2025
Lorde has revealed that her dress at the 2025 Met Gala was an “Easter egg” for her upcoming album ‘Virgin’ – see what she had to say below ... “it’s something of an easter egg, more will be revealed” pic.twitter.com/q2TqJyiPJk.
Edit

Lorde Says Her Met Ball Dress Was an ‘Easter Egg’ for New LP ‘Virgin’

Rollingstone 07 May 2025
The singer wore a custom Thom Browne ensemble that she helped to design ....
Edit

Lorde's 'modern mystic' Met Gala outfit represented where she's at 'gender-wise'

Music News 07 May 2025
While speaking to Emma Chamberlain for Vogue at the Tailored for You-themed fashion event on Monday night, the singer-songwriter revealed the silver Thom Browne ensemble was actually an "Easter egg" for her upcoming album Virgin.
Edit

Ultimate Wild Rails Tower Defense Unit Tier List

The Escapist 07 May 2025
18The best unit in the game and it’s worth around 12k to 15k gold through trading so it should be your goal since it’s 0 Stock right now.Easter Event (10000 Eggs) & Trading.
Edit

Milky Way lights sky over Rock Dam

Brainerd Dispatch 07 May 2025
CROSSLAKE — A series of five rock weirs replaced a 50-year-old rock dam between the Pine River and Big Pine Lake in Crosslake about five years ago ... ADVERTISEMENT ... 1d ago ... 1d ago ... 5d ago ... Children collect colorful Easter eggs during annual Brainerd event ... .
Edit

GTA 6: All Main Locations From Vice City And Beyond

Gamespot 07 May 2025
... check out our features on the new characters appearing in the game, loop the recently released trailer a few hundred times, and scour our screenshot gallery for Easter eggs and other hidden details.
Edit

5 insane details you might have missed in the new GTA 6 trailer

The Times of India 07 May 2025
Is this a playful jab at Sony's design or a hint that GTA 6 might let the players revisit the classics like Vice City in the game? For now, we can just speculate it is both the meta Easter egg and the ...
Edit

Utah Mammoth name, explained: Utah Hockey Club finalizes team mascot, logo

Sportingnews 07 May 2025
Over a year after the NHL officially awarded a new franchise to Utah, the team has a new name ... MORE ... Inside the fan-driven branding process which spanned 850,000 votes, came together in 13 months and includes a few juicy easter eggs. #TusksUp. Story ... .
Edit

Jacksonville Jaguars schedule 2025: Opponents known before NFL schedule release

jacksonville.com 07 May 2025
The 4-13 campaign of 2024 is already well in the rearview mirror ... Be sure to check out the teams' official social media accounts, which have turned out funny and exciting videos filled with Easter eggs and poison barbs about each week's opponents ... 7.
Edit

Do you recognize anyone in Candela Cucina's new menu? Here's the story behind the art.

SouthCoast TODAY 07 May 2025
There are little secret things and easter eggs,” Carlson said, referencing details such as a lottery ticket peeking from a server’s pocket and someone reading "Moby-Dick." ... Creating a cast of characters for the Candela menu ... ...
Edit

When is College Football 26 release date? Here's what to know about the video game hit

News Journal - Daytona Beach 07 May 2025
FAU players enjoy release of EA Sports College Football 25. FAU players enjoy release of EA Sports College Football 25 ... When is College Football 26 coming out? ... The first trailer teased a high school component to the game, among other Easter eggs.
Edit

‘Night Court’ Star Melissa Rauch Unpacks Season 3 Finale, Shares Season 4 Hopes After That ...

The Wrap 07 May 2025
Note ... “It was really, really special.” ... Rauch ... I love any of the episodes where we’re able to go back to these seeds from the original — we do try not to over saturate each episode … although there’s Easter eggs throughout.
Edit

Sarasota early learning advocates aim to help nonprofits, public employers with childcare

Herald-Tribune Sarasota 07 May 2025
“We are really landlocked here ... There is also the joy that comes when the children participate in intergenerational programs offered by The Pines, from art and musical activities to Easter egg hunts and breakfasts with Santa ...
×