Posted 10 years ago
·
Author
There is a new version of this script here: Multi IMVU Client Launcher v2
You may or may not have seen my tutorial on installing more than one IMVU client here: viewtopic.php?f=140&t=8873
If you have, then you know that the tutorial teaches you how to create a batch script to run IMVU from a different location thus allowing you to have multiple clients installed. The downside is that you end up with multiple batch scripts if you choose to install multiple clients.
This batch script will allow you to install multiple IMVU clients and run them from a single file.
Instructions
Step 1: Read this tutorial and follow the first 4 steps: viewtopic.php?f=140&t=8873
Step 2: Copy this code and paste it into notepad
Step 2: Find this part of the code (at the top):
Step 5: Replace IMVU-1, IMVU-2, IMVU-3, and IMVU-4 with the name of the folders you created in step 1
Step 6: Save the file as IMVU Launcher.bat
You're done!
You may or may not have seen my tutorial on installing more than one IMVU client here: viewtopic.php?f=140&t=8873
If you have, then you know that the tutorial teaches you how to create a batch script to run IMVU from a different location thus allowing you to have multiple clients installed. The downside is that you end up with multiple batch scripts if you choose to install multiple clients.
This batch script will allow you to install multiple IMVU clients and run them from a single file.
Instructions
Step 1: Read this tutorial and follow the first 4 steps: viewtopic.php?f=140&t=8873
Step 2: Copy this code and paste it into notepad
@ECHO OFF
SET _CLIENT1=IMVU-1
SET _CLIENT2=IMVU-2
SET _CLIENT3=IMVU-3
SET _CLIENT4=IMVU-4
:MENU
::Clear console window
CLS
::Reset text color to gray
Color 08
ECHO =========== IMVU Launcher v1.0 by D.M ==========
ECHO -----------------------------------------------
ECHO.
ECHO 1. %_CLIENT1%
ECHO 2. %_CLIENT2%
ECHO 3. %_CLIENT3%
ECHO 4. %_CLIENT4%
ECHO.
ECHO -----------------------------------------------
ECHO ============== PRESS '9' TO QUIT ==============
ECHO.
::Create variable to store user input
SET /P _SELECTION=Please Select A Client:
::Create variable to validate user input
::Times user input by 1 to check for a number
SET /A _VARCHECK=%_SELECTION%*1
::If validation variable equals 0 then input is not a number
IF /I %_VarCheck% EQU 0 (
::display invalid input warning
GOTO InvalidInput
) ELSE (
IF NOT %_SELECTION% EQU 1 (
IF NOT %_SELECTION% EQU 2 (
IF NOT %_SELECTION% EQU 3 (
IF NOT %_SELECTION% EQU 4 (
GOTO InvalidInput
) ELSE (
SET _CHOSENCLIENT=%_CLIENT4%
)
) ELSE (
SET _CHOSENCLIENT=%_CLIENT3%
)
) ELSE (
SET _CHOSENCLIENT=%_CLIENT2%
)
) ELSE (
SET _CHOSENCLIENT=%_CLIENT4%
)
)
ECHO %_CHOSENCLIENT%
GOTO RunClient
:RunClient
SET LAUNCHER=%APPDATA%\%_CHOSENCLIENT%\IMVUCLient.exe
SET NAME=%_CHOSENCLIENT%
SET APPDATA=%APPDATA%\%NAME%
%LAUNCHER%
GOTO MENU
:InvalidInput
::Clear console window
CLS
::Change text color to bright red
Color 0C
::display invalid input screen
ECHO ============INVALID INPUT============
ECHO -------------------------------------
ECHO.
ECHO Please select a number from the Main
ECHO Menu [1-4] or select '9' to quit
ECHO.
ECHO -------------------------------------
ECHO ===PRESS ANY KEY TO RETURN TO MENU===
::Wait for user to hit enter
PAUSE > NUL
::Return to menu
GOTO MENU
Step 2: Find this part of the code (at the top):
Step 5: Replace IMVU-1, IMVU-2, IMVU-3, and IMVU-4 with the name of the folders you created in step 1
Step 6: Save the file as IMVU Launcher.bat
You're done!