Difference between revisions of "Opening EVE and Mumble simultaneously"

From EVE University Wiki
Jump to: navigation, search
(Not a current WIP, flagging for cleanup)
(Added merge suggestion)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Cleanup}}
+
{{Merge|Mumble Overlay|Opening EVE and Mumble simultaneously|target=Mumble Overlay|discussion=Talk:Mumble Overlay}}  
[[Category:Guides]]
+
{{see also|Mumble}}
 
+
A step-by-step guide on how to create and setup a shortcut to open EVE Online and [[Mumble]] simultaneously on Windows using a batch file.
How To: Open EVE and Mumble at the same time, using one shortcut.
 
 
 
A step by step guide on how to create and setup a shortcut anywhere to open both EVE Online and Mumble.
 
 
 
'''PLEASE NOTE: This is for Windows as I don't use a Mac I have no idea how to go about this, if you do please feel free to add it in.'''
 
  
<br style="clear: both" />
+
This technique can theoretically be utilized with other programs, but note that such programs may require different/additional configuration for overlays or other features to function correctly.
  
= Why should I do this? =
+
== Why should I do this? ==
Well having Mumble loaded is extremely helpful and required in some situations, however most of us either:
 
  
*Forget to load Mumble and don't bother with it after we've logged in or
+
It can be useful to not need to remember to open Mumble whenever you wish to play EVE. Also, the Mumble overlay often does not work unless Mumble is loaded ''before'' EVE, and a batch shortcut can preempt the need to close and reopen the EVE client to get the Mumble overlay to function correctly.
  
*Load Mumble after we've logged in and don't get the fancy overlay unless you restart EVE
+
== Will clicking the shortcut again open more windows? ==
  
Using the shortcut I will show you how to create you can load both at the same time so you get both the usefulness of Mumble and the nice overlay (if you have it set up).
+
The shortcut will not open another instance of Mumble, but it will reopen the EVE launcher if it has been closed.
  
<br style="clear: both" />
+
== Setup ==
 +
{{hatnote|'''This guide will reference the default installation directory. This should be replaced with your own where necessary.'''}}
  
= Will clicking the shortcut again open more windows? =
+
=== Step 1 ===
After some testing of the shortcut this does not open another instance of Mumble, it will however reopen your EVE launcher if you have it set to close once the game loads.
 
  
*(I have mine set to stay open as I log into both my accounts one after the other using the same launcher.)
+
'''Create a separate copy of the original EVE shortcut.'''
  
<br style="clear: both" />
+
There are two reasons for this:
 +
#You are going to alter your shortcut. In the case where you do not want to launch Mumble as well, you will retain the original shortcut.
 +
#Easily copy the EVE icon for the new shortcut.
  
= How to setup your shortcut: =
+
=== Step 2 ===
Please note this uses a batch file. In case your not aware this is for '''Windows''' only, or more accurately '''DOS'''.
 
  
From here on I will reference the default installation directory, please replace this with your own.
+
'''Modify the shortcut.'''
 
 
<br style="clear: both" />
 
=== Step 1 - Create a separate copy of the original EVE shortcut ===
 
 
 
There are two reasons for this, the first is because you are going to alter your shortcut and in whatever case you do not want to launch Mumble as well then you can go back to your old shortcut. The second is because it will copy the EVE icon with your shortcut so it looks nicer.
 
 
 
<br style="clear: both" />
 
=== Step 2 - Modifying the shortcut ===
 
  
 
Right click on the shortcut and select properties,
 
Right click on the shortcut and select properties,
*In the Target: field replace everything with this line '''C:\Program Files\CCP\Start.bat'''
+
*In the Target: field replace everything with {{code|C:\Program Files\CCP\Start.bat}}
*In the Start in: field replace everything with this line '''C:\Program Files\CCP\EVE'''
+
*In the Start in: field replace everything with {{code|C:\Program Files\CCP\EVE}}
 
(The start in line must be set to your EVE installation, this is because the launcher outputs a debug.log file. If you do not set this is will dump the log wherever your shortcut is.)
 
(The start in line must be set to your EVE installation, this is because the launcher outputs a debug.log file. If you do not set this is will dump the log wherever your shortcut is.)
  
You can also rename the shortcut to something easily recognizable. I renamed mine to '''EVE + Mumble'''
+
The shortcut can also be renamed if desired.
  
<br style="clear: both" />
+
=== Step 3 ===
=== Step 3 - Creating the batch file ===
 
  
For simplicity I added the batch file to '''C:\Program Files\CCP\''' you can put it anywhere you like, just remember to alter your "Target" field in the shortcut to match where you place it.
+
'''Create the batch file.'''
  
You will need to go to the folder '''C:\Program Files\CCP\''', create a new text document in the folder and rename it to '''Start.bat'''.
+
The batch file can be placed anywhere, just remember to alter your "Target" field in the shortcut to match where you place it.
  
Once done, right click the batch file and select "EDIT" it should open in notepad.
+
You will need to go to the folder <code>C:\Program Files\CCP\</code>, create a new text document in the folder and rename it to '''Start.bat'''.
  
You are then going to add the following, again alter the paths to where '''YOU''' have EVE and Mumble installed.
+
Once done, right click the batch file and open it in a text editor such as Notepad.
{{example|@echo off
+
 
 +
Add the following, altering the paths to where you have EVE and Mumble installed:
 +
<pre>
 +
@echo off
 
start "" "C:\Program Files\CCP\EVE\eve.exe"
 
start "" "C:\Program Files\CCP\EVE\eve.exe"
start "" "C:\Program Files\Mumble\mumble.exe"}}
+
start "" "C:\Program Files\Mumble\mumble.exe"
 +
</pre>
  
If you are on Windows 8 and your overlay does not work you will need to add nod3d9ex to the end of the Mumble line like so:
+
If you are using Windows 8 and your overlay does not work, you will need to add <code>nod3d9ex</code> to the end of the Mumble line like so:
{{example|@echo off
+
<pre>
 +
@echo off
 
start "" "C:\Program Files\CCP\EVE\eve.exe"
 
start "" "C:\Program Files\CCP\EVE\eve.exe"
start "" "C:\Program Files\Mumble\mumble.exe" -nod3d9ex}}
+
start "" "C:\Program Files\Mumble\mumble.exe" -nod3d9ex
 +
</pre>
  
Save and close the file and your done. You can now use this new shortcut to launch both your EVE Client and Mumble at once.
+
Save and close the file to finish. You can now use this new shortcut to launch both your EVE Client and Mumble at once.
  
<br style="clear: both" />
+
[[Category:Applications]]
 
+
[[Category:Guides]]
= Useful Links =
 
 
 
* How to set up and use Mumble: [[Mumble]]
 

Latest revision as of 20:14, 16 May 2023

It has been suggested that this article or section be merged with Mumble Overlay and Opening EVE and Mumble simultaneously  to Mumble Overlay . ( Discuss )
See also: Mumble

A step-by-step guide on how to create and setup a shortcut to open EVE Online and Mumble simultaneously on Windows using a batch file.

This technique can theoretically be utilized with other programs, but note that such programs may require different/additional configuration for overlays or other features to function correctly.

Why should I do this?

It can be useful to not need to remember to open Mumble whenever you wish to play EVE. Also, the Mumble overlay often does not work unless Mumble is loaded before EVE, and a batch shortcut can preempt the need to close and reopen the EVE client to get the Mumble overlay to function correctly.

Will clicking the shortcut again open more windows?

The shortcut will not open another instance of Mumble, but it will reopen the EVE launcher if it has been closed.

Setup

This guide will reference the default installation directory. This should be replaced with your own where necessary.

Step 1

Create a separate copy of the original EVE shortcut.

There are two reasons for this:

  1. You are going to alter your shortcut. In the case where you do not want to launch Mumble as well, you will retain the original shortcut.
  2. Easily copy the EVE icon for the new shortcut.

Step 2

Modify the shortcut.

Right click on the shortcut and select properties,

  • In the Target: field replace everything with
    C:\Program Files\CCP\Start.bat
  • In the Start in: field replace everything with
    C:\Program Files\CCP\EVE

(The start in line must be set to your EVE installation, this is because the launcher outputs a debug.log file. If you do not set this is will dump the log wherever your shortcut is.)

The shortcut can also be renamed if desired.

Step 3

Create the batch file.

The batch file can be placed anywhere, just remember to alter your "Target" field in the shortcut to match where you place it.

You will need to go to the folder C:\Program Files\CCP\, create a new text document in the folder and rename it to Start.bat.

Once done, right click the batch file and open it in a text editor such as Notepad.

Add the following, altering the paths to where you have EVE and Mumble installed:

@echo off
start "" "C:\Program Files\CCP\EVE\eve.exe"
start "" "C:\Program Files\Mumble\mumble.exe"

If you are using Windows 8 and your overlay does not work, you will need to add nod3d9ex to the end of the Mumble line like so:

@echo off
start "" "C:\Program Files\CCP\EVE\eve.exe"
start "" "C:\Program Files\Mumble\mumble.exe" -nod3d9ex

Save and close the file to finish. You can now use this new shortcut to launch both your EVE Client and Mumble at once.