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 General Discussion

 
  • Topic is locked indefinitely.
 

My EVE settings have somehow been reset

Author
Implying Implications
Sebiestor Tribe
Minmatar Republic
#1 - 2012-01-09 00:01:01 UTC
I just logged onto one of my accounts and I soon found out that all the settings had been reset including my large market quick bar which I don't want to remake. I last used the account this morning and things were fine. If backups are automatically made for the settings files, where can I find them?
T' Elk
Strategically Bad
Goonswarm Federation
#2 - 2012-01-09 00:47:18 UTC
That sucks. Want a tissue? OT: Your settings may still be in
C:\Users\Username\AppData\Local\CCP\EVE\c_program_files_(x86)_ccp_eve_tranquility\settings
but it's unlikely.

~Badposter since FOOOOREEEEEVAAAAAR~ I come back after 2 years to THIS? ~Now 4 years apparently

Jimi Crackcorn
Directed Evolution Corp
#3 - 2012-01-09 01:18:23 UTC
T' Elk wrote:
That sucks. Want a tissue?


Watch out guys, we got a badass over here!
Brock Nelson
#4 - 2012-01-09 01:29:59 UTC
Jimi Crackcorn wrote:
T' Elk wrote:
That sucks. Want a tissue?


Watch out guys, we got a badass over here!


If you're gonna use that meme, at least use it right Roll

Signature removed, CCP Phantom

Jimi Crackcorn
Directed Evolution Corp
#5 - 2012-01-09 01:33:10 UTC
Brock Nelson wrote:
Jimi Crackcorn wrote:
T' Elk wrote:
That sucks. Want a tissue?


Watch out guys, we got a badass over here!


If you're gonna use that meme, at least use it right Roll


Watch out guys, we got a meme expert over here!
Alotta Fachina
Lootera Spaceworks
#6 - 2012-01-09 01:42:31 UTC
I feel you. As I have painfully discovered, if eve crashes, it resets everything. I've had to do this with multiple clients today. It sucks. CCP what have you done now?


I have a good way to back up everything. I made backups of backups this go round...

http://blog.eve-rokkr.com/importing-client-settings
Brock Nelson
#7 - 2012-01-09 01:55:06 UTC
Here's a simple script that automatically backup your eve setting as well restores it. Copy this in a notepad and save it as a .bat file.


@echo off
:start
rem Blue Binary's backup settings tool
color 8
echo.
echo. Eve settings (Vista)
echo. ====================
echo. (B)ackup settings
echo. (R)estore settings
echo.
set choice=
set /p choice= Choose to either backup or restore client(s) settings :
echo.
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='b' goto backup
if '%choice%'=='B' goto backup
if '%choice%'=='r' goto restore
if '%choice%'=='R' goto restore
echo "%choice%" is not valid please try again
echo.
goto start

:backup
for /F %%i in ('dir /b /ad "%LOCALAPPDATA%\CCP\EVE"') do (
if exist "%HOMEPATH%\Documents\EveBackup\%%i" (
echo.Backing up the settings for %%i
xcopy "%LOCALAPPDATA%\CCP\EVE\%%i\settings\*.*" "%HOMEPATH%\Documents\EveBackup\%%i" /q/r/y
echo.
) else (
echo.Backing up the settings for %%i
mkdir "%HOMEPATH%\Documents\EveBackup\%%i"
xcopy "%LOCALAPPDATA%\CCP\EVE\%%i\settings\*.*" "%HOMEPATH%\Documents\EveBackup\%%i" /q/r/y
echo.
)
)
echo.Backup location is: Documents\EveBackup
echo.
goto eof

:restore
if exist "%HOMEPATH%\Documents\EveBackup\%%i" (
for /F %%i in ('dir /b /ad "%HOMEPATH%\Documents\EveBackup"') do (
if exist "%LOCALAPPDATA%\CCP\EVE\%%i" (
echo.Restoring the settings for %%i
xcopy "%HOMEPATH%\Documents\EveBackup\%%i\*.*" "%LOCALAPPDATA%\CCP\EVE\%%i\settings" /q/r/y
echo.
) else (
echo.The directory %%i does not exist.
echo.Creating a new directory...
echo.This error appears because either:
echo.
echo.1 - There is a fresh Eve install and the cache has not been set yet.
echo. No problem...
echo.
echo.2 - You have installed Eve to a different directory.
echo. The settings will fail to install properly!
echo.
mkdir "%LOCALAPPDATA%\CCP\EVE\%%i\settings"
echo.Restoring the settings for %%i
xcopy "%HOMEPATH%\Documents\EveBackup\%%i\*.*" "%LOCALAPPDATA%\CCP\EVE\%%i\settings" /q/r/y
echo.
)
)
) else (
echo.There is nothing to restore!
echo.
)

:eof
pause

Signature removed, CCP Phantom

T' Elk
Strategically Bad
Goonswarm Federation
#8 - 2012-01-09 01:56:34 UTC
Jimi Crackcorn wrote:
T' Elk wrote:
That sucks. Want a tissue?


Watch out guys, we got a badass over here!

P much. Problem, officer?

~Badposter since FOOOOREEEEEVAAAAAR~ I come back after 2 years to THIS? ~Now 4 years apparently

Implying Implications
Sebiestor Tribe
Minmatar Republic
#9 - 2012-01-09 02:52:43 UTC
Thanks for the help. Cool