Jump to content

Skyrim crashes as soon as I open it and make it past Bethesda logo


darkfaire

Recommended Posts

So I just got into modding Skyrim and have have been downloading a couple mods, but after I added a couple mods I opened my game and it keeps crashing once I made it past the Bethesda logo. I'm brand new to modding it, so I downloaded Boss, but have no I idea what anything in the log means so any help would be greatly appreciated!

 

Boss Log
var i, elemArr;
if (isStorageSupported()){ /*Set up filter value and CSS setting storage read/write handlers.*/
elemArr = document.getElementsByTagName('aside')[0].getElementsByTagName('input');
i = elemArr.length - 1;
while(i > -1){
elemArr.addEventListener('click', saveCheckboxState, false);
i--;
}
document.getElementById('suppressBrowserBox').addEventListener('click', saveCheckboxState, false);
document.getElementById('cssSettings').getElementsByTagName('form')[0].addEventListener('submit', storeCSS, false);
}
if (isCSSBackupRestoreSupported()){ /*Set up handlers for CSS backup & restore.*/
var dropZone = document.getElementById('cssSettings');
dropZone.addEventListener('dragover', handleDragOver, false);
dropZone.addEventListener('drop', handleFileSelect, false);
dropZone.addEventListener('dragleave', handleDragLeave, false);
document.getElementById('cssButtonBackup').addEventListener('click', backupCSS, false);
}
if (isPluginSubmitSupported() && document.getElementById('unrecPlugins') != null){ /*Set up handlers for plugin submitter.*/
elemArr = document.getElementById('unrecPlugins').querySelectorAll('span.mod');
i = elemArr.length - 1;
while(i > -1){
elemArr.addEventListener('click', showSubmitBox, false);
i--;
}
document.getElementById('submitBox').getElementsByTagName('form')[0].addEventListener('reset', hideSubmitBox, false);
document.getElementById('submitBox').getElementsByTagName('form')[0].addEventListener('submit', submitPlugin, false);
}
document.getElementById('filtersButtonToggle').addEventListener('click', toggleFilters, false);
/*Set up handlers for section display.*/
elemArr = document.getElementsByTagName('nav')[0].querySelectorAll('nav > div.button');
var i = elemArr.length - 1;
while(i > -1){
elemArr.addEventListener('click', showSection, false);
i--;
}
document.getElementById('supportButtonShow').addEventListener('click', showSection, false);
document.getElementById('cssButtonShow').addEventListener('click', showSection, false);
document.getElementById('cssButtonShow').addEventListener('click', showCSSBox, false);
document.getElementById('cssSettings').getElementsByTagName('form')[0].addEventListener('submit', applyCSS, false);
document.getElementById('cssSettings').getElementsByTagName('form')[0].addEventListener('submit', swapColorScheme, false);
document.getElementById('useDarkColourScheme').addEventListener('click', swapColorScheme, false);
/*Set up handlers for filters.*/
document.getElementById('hideVersionNumbers').addEventListener('click', toggleDisplayCSS, false);
document.getElementById('hideActiveLabel').addEventListener('click', toggleDisplayCSS, false);
document.getElementById('hideChecksums').addEventListener('click', toggleDisplayCSS, false);
document.getElementById('hideNotes').addEventListener('click', toggleMessages, false);
document.getElementById('hideBashTags').addEventListener('click', toggleMessages, false);
document.getElementById('hideRequirements').addEventListener('click', toggleMessages, false);
document.getElementById('hideIncompatibilities').addEventListener('click', toggleMessages, false);
document.getElementById('hideDoNotCleanMessages').addEventListener('click', toggleMessages, false);
document.getElementById('hideAllPluginMessages').addEventListener('click', toggleMessages, false);
document.getElementById('hideInactivePlugins').addEventListener('click', togglePlugins, false);
document.getElementById('hideMessagelessPlugins').addEventListener('click', togglePlugins, false);
document.getElementById('hideCleanPlugins').addEventListener('click', togglePlugins, false);
}function applyFeatureSupportRestrictions(){ if (!isPluginSubmitSupported() && document.getElementById('unrecPlugins') != null) { /*Disable unrecognised mod underline effect.*/ var buttons = document.getElementById('unrecPlugins').querySelectorAll('span.mod'); for (var i=0, len=buttons.length; i < len; i++) { buttons.className += 'nosubmit'; } hideElement(document.getElementById('unrecPluginsSubmitNote')); } if (isStorageSupported()) { hideElement(document.getElementById('loseSettingsClose')); } else { hideElement(document.getElementById('loseSettingsCacheClear')); } if (!isCSSBackupRestoreSupported()) { hideElement(document.getElementById('backupCSSNote')); }}function init(){ setupEventHandlers(); if (isStorageSupported()){ loadSettings(); } applyFeatureSupportRestrictions(); /*Initially disable all filters.*/ var elemArr = document.getElementsByTagName('aside')[0].getElementsByTagName('input'); for (var i=0, z=elemArr.length;i<z;i++){ elemArr.disabled = true; } showBrowserBox();}init();</script>
Link to comment
Share on other sites

Gopher has a YouTube video on how to diagnose and correct the Crash on Startup error. it is almost always a missing master file or dependency from one of the mods you are using and he details how to use TES5EDIT to locate and correct the problem...

 

 

 

If you do find that the video helps you, please remember to Thumb it up on YouTube to thank him.

Link to comment
Share on other sites

When someone on the forums asks for a BOSS log, what they really mean is the listing that BOSS displays when you run BOSS to show you the load order it is setting for your game. This often has clues as to what masters are missing and some other common problems as well as whether or not a mod has dirty edits ( dirty edits are usually not a problem as over 95% of them are just a duplicated record that will not affect the game at all. The second record just overwrites the first with no change at all. Cleaning doesn't hurt, but often doesn't make any difference either.)

 

Look through the listing for missing masters, known conflicts and messages like "only one of these options should be active" and FIX those before proceeding to more complex possible solutions. I have lost count of the number of BOSS 'logs' that I have seen posted with messages like, "Missing Master xxx is required for this to work." or, "Only one of these options should be used at a time"

 

If you are missing a master - it WILL crash

If you use multiple exclusive options - It WILL crash

If you use a mod that requires SKSE - It WILL (most likely) crash immediately if you forgot to start the game with SKSE

If you use conflicting mods - It MAY crash - but maybe not immediately.

If you have dirty edits - It will probably NOT crash instantly, but MAY later on if a dirty edit actually does overwrite something important (low probability)

 

Use copy/paste to post the BOSS listing to the forums. And, if you can, hide the log in spoiler tags so it doesn't take up several pages of the forum forcing people who don't want to look at it to scroll a lot to see the next post.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...