Jump to content
w1lg5r

Add server to favourites when in server

Recommended Posts

I'd also like to be able to see which server I'm in while I'm playing. I like sticking to one server for the duration of a play session and if it restarts it can be difficult to find it again.

  • Like 2

Share this post


Link to post
Share on other sites

i agree with this suggestion, im sure everyone who plays would use this feature if it is added

Share this post


Link to post
Share on other sites

Or they need to fix the history tab. it should only show say a certain number of servers listed in chronological order. That would fix it but also knowing server you are in from in-game would be nice as well.

  • Like 1

Share this post


Link to post
Share on other sites

indeed there use to be a key for server info when in the server

 

They should just attach the info to the top of the player list. The "P" key

Share this post


Link to post
Share on other sites

i agree with this idea, beans for you  :thumbsup:  :beans:

 

also suggested before

Share this post


Link to post
Share on other sites

I'd also like to be able to see which server I'm in while I'm playing. I like sticking to one server for the duration of a play session and if it restarts it can be difficult to find it again.

agreed

Share this post


Link to post
Share on other sites

This in one of many frustrating things....

Temp Solution: Open the following file with a text editor like notepad.

C:\Users\YourName\Documents\DayZ\YourName.DayZProfile

or

%HOMEDRIVE%\%HOMEPATH%\Documents\DayZ\%USERNAME%.DayZProfile

line ~437 shows the IP of the lastMPServer for direct connection, the next line shows LastMPServerName, so you can pick it from your history list.

I wrote a dayzhistory.bat dos script as follows...

lists the hosts connected to while playing... alt-tab and you get the list...

@echo off

setlocal

set FileName=%HOMEDRIVE%\%HOMEPATH%\Documents\DayZ\%USERNAME%.DayZProfile

set FileTime="-"

:loop

for %%X in (%FileName%) do (

if %FileTime% NEQ "%%~tX" (

type %FileName% | find "lastMPServer"

)

set FileTime="%%~tX"

)

rem wait 5 seconds before checking again

ping -n 6 localhost >nul 2>nul

goto :loop

  • Like 1

Share this post


Link to post
Share on other sites

@echo off

setlocal

set FileName=%HOMEDRIVE%\%HOMEPATH%\Documents\DayZ\%USERNAME%.DayZProfile

set FileTime="-"

:loop

for %%X in (%FileName%) do (

if %FileTime% NEQ "%%~tX" (

type %FileName% | find "lastMPServer"

)

set FileTime="%%~tX"

)

rem wait 5 seconds before checking again

ping -n 6 localhost >nul 2>nul

goto :loop

 

This deletes your Internet, dont do it. 

JK, this works nicely, thank you my dear sir.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×