Lazyboxer
From Dual-Boxing Wiki
Original source: LazyBoxer Utilities v0.1 by Wougoose
Contents |
Introduction
This tool is used for keeping your multiple WoW directories in sync. I decided to write this per Xzin's request on the general forums. I saw other great ideas using subversion or some other form of source control, but decided to provide a simple, easy to use batch script for the time being.
If you ever find yourself annoyed by having to copy your ui/macro settings from your main to your alts by hand, this may be of use to you. We are lazy, so why not have a tool that promotes it?
Note: This is currently a simple batch script. If anyone has any suggestions on refactoring this code, additional features, or any other ideas, let me know and I'll do what I can and update this post. I am hoping this evolves into an open community effort.
Current Features:
- Menu Driven
- Update Macros
- Update Addons
- Update Addon Configuration
- Update Keybindings
- Update General UI Settings
Planned Features:
- Pushing patches
- Backup current settings
- Provide a more dynamic input
How to use?
- Copy the code in the next post and paste it into notepad
- File -> Save As
- Save the file with a .bat extension (Example: LazyBoxer.bat) and save it as type All Files
- Edit the variables at the top of the batch script to match your environment. Files are copied from the 'main' variables.
- Run the batch file
Code
@echo off REM ------------------------------------------------------------------------------------------ REM REM Change these variables to match your current settings REM REM ------------------------------------------------------------------------------------------ set gamedirmain=c:\games\wowx set gamedir1=c:\games\wowa set gamedir2=c:\games\wowb set gamedir3=c:\games\wowc set gamedir4=c:\games\wowd set realm=Magtheridon set accountmain=goosex set account1=goosea set account2=gooseb set account3=goosec set account4=goosed set charmain=xmeh set char1=ameh set char2=bmeh set char3=cmeh set char4=dmeh REM ------------------------------------------------------------------------------------------ REM REM Menu REM REM ------------------------------------------------------------------------------------------ :menu cls echo --------------------------------- echo LazyBoxer Utilities echo Author: wougoose echo --------------------------------- echo What would you like to update? echo 1. Macros echo 2. General UI / Layout / Chat Settings echo 3. Installed Addons echo 4. Addon Configuration echo 5. Key Bindings echo 6. Exit set /p choice= goto :%choice% REM ------------------------------------------------------------------------------------------ REM REM Utilities REM REM ------------------------------------------------------------------------------------------ :1 echo Updating Macros... xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-cache.txt %gamedir1%\WTF\Account\%account1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-cache.txt %gamedir2%\WTF\Account\%account2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-cache.txt %gamedir3%\WTF\Account\%account3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-cache.txt %gamedir4%\WTF\Account\%account4%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-local.txt %gamedir1%\WTF\Account\%account1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-local.txt %gamedir2%\WTF\Account\%account2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-local.txt %gamedir3%\WTF\Account\%account3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\macros-local.txt %gamedir4%\WTF\Account\%account4%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-cache.txt %gamedir1%\WTF\Account\%account1%\%realm%\%char1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-cache.txt %gamedir2%\WTF\Account\%account2%\%realm%\%char2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-cache.txt %gamedir3%\WTF\Account\%account3%\%realm%\%char3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-cache.txt %gamedir4%\WTF\Account\%account4%\%realm%\%char4%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-local.txt %gamedir1%\WTF\Account\%account1%\%realm%\%char1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-local.txt %gamedir2%\WTF\Account\%account2%\%realm%\%char2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-local.txt %gamedir3%\WTF\Account\%account3%\%realm%\%char3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\macros-local.txt %gamedir4%\WTF\Account\%account4%\%realm%\%char4%\ /y echo Finished, Press any key to contine... pause >nul goto :menu :2 echo Updating General UI / Layout / Chat Settings... xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables.lua %gamedir1%\WTF\Account\%account1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables.lua %gamedir2%\WTF\Account\%account2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables.lua %gamedir3%\WTF\Account\%account3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables.lua %gamedir4%\WTF\Account\%account4%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\layout-cache.txt %gamedir1%\WTF\Account\%account1%\%realm%\%char1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\layout-cache.txt %gamedir2%\WTF\Account\%account2%\%realm%\%char2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\layout-cache.txt %gamedir3%\WTF\Account\%account3%\%realm%\%char3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\layout-cache.txt %gamedir4%\WTF\Account\%account4%\%realm%\%char4%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\chat-cache.txt %gamedir1%\WTF\Account\%account1%\%realm%\%char1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\chat-cache.txt %gamedir2%\WTF\Account\%account2%\%realm%\%char2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\chat-cache.txt %gamedir3%\WTF\Account\%account3%\%realm%\%char3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\chat-cache.txt %gamedir4%\WTF\Account\%account4%\%realm%\%char4%\ /y echo Finished, Press any key to contine... pause >nul goto :menu :3 echo Updating Installed Addons... xcopy %gamedirmain%\Interface %gamedir1%\Interface /d /s xcopy %gamedirmain%\Interface %gamedir2%\Interface /d /s xcopy %gamedirmain%\Interface %gamedir3%\Interface /d /s xcopy %gamedirmain%\Interface %gamedir4%\Interface /d /s echo Finished, Press any key to contine... pause >nul goto :menu :4 echo Updating Addon Configuration... xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables %gamedir1%\WTF\Account\%account1%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables %gamedir2%\WTF\Account\%account2%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables %gamedir3%\WTF\Account\%account3%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\SavedVariables %gamedir4%\WTF\Account\%account4%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\SavedVariables %gamedir1%\WTF\Account\%account1%\%realm%\%char1%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\SavedVariables %gamedir2%\WTF\Account\%account2%\%realm%\%char2%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\SavedVariables %gamedir3%\WTF\Account\%account3%\%realm%\%char3%\SavedVariables /s /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\SavedVariables %gamedir4%\WTF\Account\%account4%\%realm%\%char4%\SavedVariables /s /y echo Finished, Press any key to contine... pause >nul goto :menu :5 echo Updating Key Bindings... xcopy %gamedirmain%\WTF\Account\%accountmain%\bindings-cache.wtf %gamedir1%\WTF\Account\%account1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\bindings-cache.wtf %gamedir2%\WTF\Account\%account2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\bindings-cache.wtf %gamedir3%\WTF\Account\%account3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\bindings-cache.wtf %gamedir4%\WTF\Account\%account4%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\bindings-cache.wtf %gamedir1%\WTF\Account\%account1%\%realm%\%char1%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\bindings-cache.wtf %gamedir2%\WTF\Account\%account2%\%realm%\%char2%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\bindings-cache.wtf %gamedir3%\WTF\Account\%account3%\%realm%\%char3%\ /y xcopy %gamedirmain%\WTF\Account\%accountmain%\%realm%\%charmain%\bindings-cache.wtf %gamedir4%\WTF\Account\%account4%\%realm%\%char4%\ /y echo Finished, Press any key to contine... pause >nul goto :menu :6
