21
22
23
1:32
Ps5 users, I have made a modslist that you guys might enjoy see details down below (v.redd.it)
submitted by drdadbod45
- 15 comments
- save
- report
' + '
' + '
' + '
' + '
' + '
' + '
' + '
' + '
' + '
' + '
' + '
' ); var bufferingControlsOptions = { behavior: RedditVideoController.Behaviors.BUFFERING, startVisible: false, fadeInDuration: 0, fadeOutDuration: 0, }; var bufferingControls = new RedditVideoController(bufferingControlsTree, bufferingControlsOptions); redditVideoPlayer.addUiController(bufferingControls); var pinnedHeight = videoPlayerElement.data("pinnedHeight"); var pinnedWidth = videoPlayerElement.data("pinnedWidth"); var maxPinnedWidth = videoPlayerElement.data("maxPinnedWidth"); $(document.body).on('pinnable:pinned', function(event) { videoPlayerElement.css('height', pinnedHeight); videoPlayerElement.css('width', pinnedWidth); videoPlayerElement.closest('.thing').find('.top-matter').css('left', pinnedWidth + 95); }.bind(this)); $(document.body).on('pinnable:unpinned', function(event) { videoPlayerElement.css('height', ''); videoPlayerElement.css('width', ''); }.bind(this)); var pinnedControlMargin = 12 * Math.pow(pinnedWidth / maxPinnedWidth, 2); var pinnedControlsTree = $.parseHTML( '
' + '
' + '' + '' + '
' + '
' ); var pinnedControls = new RedditVideoController(pinnedControlsTree); redditVideoPlayer.addUiController(pinnedControls); var endedControlsTree = $.parseHTML( '
' + '
' + '' + 'Replay Video' + '
' + '
' ); var endedControlsOptions = { behavior: RedditVideoController.Behaviors.COMPLETED, startVisible: false, fadeInDuration: 400, fadeOutDuration: 0, }; var endedControls = new RedditVideoController(endedControlsTree, endedControlsOptions); redditVideoPlayer.addUiController(endedControls); var playbackControlsTree = $.parseHTML( '
' + '' + '' + '0:00' + '' + '
' + '
' + '' + '0:00' + '' + '
' + '
' + '' + '
' + '
' + '' + '
' + '' + '
' ); var playbackControlsOptions = { behavior: RedditVideoController.Behaviors.MOUSE_MOVE, }; var playbackControls = new RedditVideoController(playbackControlsTree, playbackControlsOptions); redditVideoPlayer.addUiController(playbackControls); if (r.config && !r.config.pref_video_autoplay && thing.context === "comments") { var interstitialControlsTree = $.parseHTML( '
' + '
' + '' + '
' + '
' ); var interstitialControlsOptions = { behavior: RedditVideoController.Behaviors.INTERSTITIAL, startVisible: true, fadeInDuration: 0, fadeOutDuration: 400, }; var interstitialControls = new RedditVideoController(interstitialControlsTree, interstitialControlsOptions); redditVideoPlayer.addUiController(interstitialControls); } $(playbackControlsTree).find('input.settings').change(function() { if ($(this).is(':checked')) { firePlayerEvent.call(redditVideoPlayer, null, null, {verb: 'click', noun: 'settings'}); redditVideoPlayer.setClickAction(RedditVideoPlayer.ClickActions.NONE); } else { redditVideoPlayer.setClickAction(RedditVideoPlayer.ClickActions.PLAY_PAUSE); } }); } if (isMobile && thing.isGif) { $(videoPlayerElement).find("video").bind("webkitendfullscreen", function() { this.play(); }); redditVideoPlayer.mute(); } $(document.body).on("interstitial:destroy", function(event) { if ("t3_1h2bsub" == event.expando.id) { redditVideoPlayer.play(); } }); var parent = $("#media-preview-1h2bsub").parent(); var hadInterstitial = parent.hasClass("expando") && !(parent.hasClass("expando--with-interstitial")) && !(parent.hasClass("expando-uninitialized")) && "" != ""; if (hadInterstitial && !isMobile) { $(videoPlayerElement).find("video")[0].addEventListener("canplay", function() { redditVideoPlayer.play(); }) } var playPauseButtons = $(videoPlayerElement).find("button.play-pause"); var isPlaying = autoplay; redditVideoPlayer.addActionCompletedCallback(function(action, value) { if ((action == RedditVideoPlayer.Actions.PLAY && !isPlaying) || (action == RedditVideoPlayer.Actions.PAUSE && isPlaying)) { playPauseButtons.each(function() { var animation = $(this).find('animate').first(); var to = animation.attr('to'); var from = animation.attr('from'); animation.attr({ "from": to, "to": from }); if ('beginElement' in animation[0]) { animation.get(0) .beginElement(); } else { var path = $(this).find('path'); path.attr({"d": from}); } }); isPlaying = !isPlaying; } else if (action == RedditVideoPlayer.Actions.NONE && thing.isGif && isMobile) { redditVideoPlayer.toggleFullScreen(); return; } var settings = $(playbackControlsTree).find("input.settings"); if (settings.prop("checked")) { settings.prop("checked", false); redditVideoPlayer.setClickAction(RedditVideoPlayer.ClickActions.PLAY_PAUSE); } }); var postElement = videoPlayerElement.closest('.thing.link'); r.analytics.observeAdVideoPlayer(postElement, videoPlayerElement); redditVideoPlayer.addActionCompletedCallback(function(action, value) { var actions = [ RedditVideoPlayer.Actions.BUFFERING, RedditVideoPlayer.Actions.PAUSE, RedditVideoPlayer.Actions.PLAYING, RedditVideoPlayer.Actions.REPLAY, RedditVideoPlayer.Actions.SEEK_JUMP, RedditVideoPlayer.Actions.SET_CURRENT_TIME, RedditVideoPlayer.Actions.FULLSCREEN_REQUEST, RedditVideoPlayer.Actions.FULLSCREEN_CANCEL, RedditVideoPlayer.Actions.UNMUTE, RedditVideoPlayer.Actions.MUTE, RedditVideoPlayer.Actions.SET_VOLUME, RedditVideoPlayer.Actions.DURATION_CHANGE, ]; if (actions.indexOf(action) >-1) { var targetElement = $(this.root).closest('.thing.link'); var playerData = { muted: redditVideoPlayer.muted, volume: redditVideoPlayer.volume, duration: redditVideoPlayer.duration, }; r.analytics.handleVideoAdEvent(action, value, playerData, targetElement); } }); var lastTime = 0; redditVideoPlayer.addTimeUpdateHandler(function(currentTime, duration) { var targetElement = $(this.root).closest('.thing.link'); var INTERVAL = 0.5; var timeDiff = currentTime - lastTime; lastTime = currentTime; if (timeDiff >0 && timeDiff< INTERVAL) { r.analytics.handleVideoTimeUpdate(currentTime, timeDiff, duration, targetElement); } }); function firePlayerEvent(action, value, extras) { extras = (typeof extras === 'object') ? extras : {}; var verb = extras.verb || ''; var noun = extras.noun || ''; var source = extras.source || 'videoplayer'; var maxTimestamp = this.maxPlayed * 1000; var durationMs = this.duration * 1000; var timeMs = this.currentTime * 1000; var pinnableElement = $(this.root).closest('.pinnable-content'); var targetElement = $(this.root).closest('.thing.link'); var targetData = targetElement.data(); var videoState = { maxTimestampServed: parseInt(maxTimestamp), percentServed: maxTimestamp / durationMs, duration: parseInt(durationMs), time: parseInt(timeMs), isNsfw: targetElement.hasClass('over18'), isSpoiler: targetElement.hasClass('spoiler'), isPinned: pinnableElement.hasClass('pinned'), isVertical: this.orientation === RedditVideoPlayer.Orientations.PORTRAIT, firstFrameTime: this.firstFrameTime, loadStartTime: this.loadStartTime, }; r.analytics.videoPlayerEvent(source, verb, noun, targetData, videoState); } redditVideoPlayer.addActionCompletedCallback(firePlayerEvent); })();
This modslist aims to bring that apocalyptic feeling back into the game that was seen in previous entries. I'd like to start off by saying I'm no video montage maker so sorry this isn't great quality work but I just wanted to show it off.
This mod list aims to make your survival experience much more enjoyable I know us PS5 users don't have much but I felt like I was able to make a pretty good experience with what we were given down below is a list of mods that will do things like change how your game looks, change the spawn rate of enemies, change perks and other mechanics, and to try and bring a little more life and realism into the fold I would love it if you guys would give this list a try and let me know what you guys think
PS I also recommend turning off dialog camera just feels a lot more immersive and like the older Fallout games without it