Kelsenellenelvian Posted September 7, 2011 Posted September 7, 2011 The time has come once again to see all of your mods and maybe add them into the official wpi!Please post your mods, no matter how small, and the code that goes with.
Francesco Posted September 11, 2011 Posted September 11, 2011 Feature: LaunchInfIn ConfigWizard.jsBelow CommandsMenuBar.addNewChild("cmd_system", 3, "dos_instinf", "InstINF", false, "", ""); add CommandsMenuBar.addNewChild("cmd_system", 4, "dos_launchinf", "LaunchInf", false, "", "");Below case 'dos_instinf': HandleCommandsSelectionMenu("{INSTINF} "); break; add case 'dos_launchinf': HandleCommandsSelectionMenu("{LAUNCHINF} "); break;Replace if (document.getElementById("cmd1").value.substr(0,9)=="{INSTINF}") with if (document.getElementById("cmd1").value.substr(0,9)=="{INSTINF}" || document.getElementById("cmd1").value.substr(0,9)=="{LAUNCHINF}")In Installer.jsBelow case '{INSTINF}': cmd=("CMD /C "+cmd.replace(/{INSTINF}/gi,'rundll32.exe setupapi,InstallHinfSection DefaultInstall 132')); fsoCmd=true; break; add case '{LAUNCHINF}': cmd=("CMD /C "+cmd.replace(/{LAUNCHINF}/gi,'rundll32.exe advpack.dll,LaunchINFSection')); fsoCmd=true; break;
Francesco Posted September 11, 2011 Posted September 11, 2011 (edited) Updated Italian langfile for 8.2.2lang_it.js Edited September 11, 2011 by Francesco
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now