These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE New Citizens Q&A

 
  • Topic is locked indefinitely.
 

multiple accounts copy keyboard shorcuts and other settings

Author
Meitis Mclawl
Doomheim
#1 - 2016-02-24 19:01:31 UTC
Hello

I've got two accounts that i play on one PC via the non-steam eve launcher.

I want to sync the keyboard shortcuts and any other settings from my main account to my secondary.

Is this possible?
J'Poll
School of Applied Knowledge
Caldari State
#2 - 2016-02-24 20:51:23 UTC
Sync as in so they are the same on both accounts

Or

Sync as in press 1 key and both accounts do something at the same time?

Personal channel: Crazy Dutch Guy

Help channel: Help chat - Reloaded

Public roams channels: RvB Ganked / Redemption Road / Spectre Fleet / Bombers bar / The Content Club

Tau Cabalander
Retirement Retreat
Working Stiffs
#3 - 2016-02-24 22:43:58 UTC
I believe it may be possible with the new launcher, but I've not explored that capability yet.

I wouldn't try it with the old launcher, as that could be mistaken as client modification.
Meitis Mclawl
Doomheim
#4 - 2016-02-25 19:50:09 UTC
i want to copy all settings from my main account onto my secondary account without having to go through the whole thing manually.

sync probably wasnt the right word to use
Tau Cabalander
Retirement Retreat
Working Stiffs
#5 - 2016-02-26 01:35:23 UTC
Testing a new EVE Launcher wrote:
It supports multiple settings profiles

For each client you launch, you can select a settings profile. This is somewhat simplistic, though - really all that is happening is you are selecting a settings folder to use for the client.

http://content.eveonline.com/www/newssystem/media/67626/1/image2015-10-2_13-11-35.png
Moonlit Raid
Doomheim
#6 - 2016-02-26 23:47:33 UTC
Meitis Mclawl wrote:
i want to copy all settings from my main account onto my secondary account without having to go through the whole thing manually.

sync probably wasnt the right word to use


Create yourself a batch file in windows and use the following to help you, I do exactly what you describe all the time. If you don't know what the batch functions are look them up on google to work it out. but the short version is it changes directory to your specific settings folder then copies one of my characters settings files and pastes them to the same folder. It will overwrite existing files so get the source right. Then it jumps to account settings and does the same, using the same account as source as my "main" character is on.

Easiest way to get the numbers you need since they're not named is to use EVEMon and have a look at the Character select page, it's got the numbers related to the characters and account on there.

@echo off
echo check directory is correct!

cd C:\Users\Moonlit\AppData\Local\CCP\EVE\c_eve_sharedcache_tq_tranquility\settings_Default

echo copy main's settings to all other toons?
pause
echo characters data
copy core_char_0001.dat core_char_0002.dat
copy core_char_0001.dat core_char_0003.dat
copy core_char_0001.dat core_char_0004.dat
copy core_char_0001.dat core_char_0005.dat
copy core_char_0001.dat core_char_0006.dat
copy core_char_0001.dat core_char_0007.dat
copy core_char_0001.dat core_char_0008.dat
copy core_char_0001.dat core_char_0009.dat
copy core_char_0001.dat core_char_0010.dat
copy core_char_0001.dat core_char_0011.dat
copy core_char_0001.dat core_char_0012.dat
echo accounts data
copy core_user_0100.dat core_user_0200.dat
copy core_user_0100.dat core_user_0300.dat
copy core_user_0100.dat core_user_0400.dat
pause

If brute force isn't working, you're just not using enough.

Please Note: Any advice given comes with the caveat that nothing will be suitable for every situation.