Instale o Steam
iniciar sessão
|
idioma
简体中文 (Chinês simplificado)
繁體中文 (Chinês tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Tcheco)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol — Espanha)
Español-Latinoamérica (Espanhol — América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polonês)
Português (Portugal)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar um problema com a tradução
However, i have Steam auto-login for me, and don't want my credentials in plaintext in this script. So, i edited it a bit, for people who use "remember me" when logging in to Steam.
Note: Remember to run as administrator!
==================================
@echo off
SET Wurm=366220
SET Steam="D:\Steam\Steam.exe"
rem -------- Kill the 3 steam processes -------
taskkill -f -im steamservice.exe
taskkill -f -im steam.exe
taskkill -f -im gameoverlayui.exe
rem ------- Start Wurm Unlimited --------------
call "Steam" %STEAM%
:LAUNCH
timeout /t 1 /nobreak >nul
start "" %STEAM% -applaunch %WURM% >nul 2>nul || goto LAUNCH
exit
http://forum.wurmonline.com/index.php?/topic/133388-run-multiple-wu-clients-no-sandboxie-or-vm-required/
Fattox, tha't s a great modification to the original batch file! I'll definitely have to modify my original post on the Wurm Unlimited forums to reflect this and make sure to give you credit on there. Thanks!
Drakeling I apologize for that, I did not go back and verify. Sorry. It just auto copied PipPip when I pasted it, I have no idea who that is, I will correct the post for you. Thanks for your hard work on this.
I HIGHLY recommend you NEVER place your username and password in plain text on your computer. It's not needed for this and there are alternatives.
http://forum.wurmonline.com/index.php?/topic/137892-launching-multiple-clients-without-killing-steam-and-without-any-3rd-party-software/
or (old style)
@echo off
rem ------------- Variables ------------------
SET Wurm=366220
SET Steam="%programfiles(x86)%\Steam\Steam.exe"
rem -------- Kill the 3 steam processes -------
taskkill -f -im steamservice.exe
taskkill -f -im steam.exe
taskkill -f -im gameoverlayui.exe
rem ------- Start Wurm Unlimited --------------
call "Steam" %STEAM%:LAUNCHtimeout /t 1 /nobreak >nul
start "Steam - Wurm Unlimited" %STEAM% -applaunch %WURM% >nul 2>nul || goto LAUNCH
exit
https://forum.wurmonline.com/index.php?/topic/137892-launching-multiple-clients-without-killing-steam-and-without-any-3rd-party-software/