<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Dragonwilds%3ADedicated_Servers%2FWindows</id>
	<title>Dragonwilds:Dedicated Servers/Windows - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Dragonwilds%3ADedicated_Servers%2FWindows"/>
	<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Dragonwilds:Dedicated_Servers/Windows&amp;action=history"/>
	<updated>2026-04-09T13:44:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.sasgaming.net/index.php?title=Dragonwilds:Dedicated_Servers/Windows&amp;diff=39357&amp;oldid=prev</id>
		<title>imported&gt;Keplare: nav chg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Dragonwilds:Dedicated_Servers/Windows&amp;diff=39357&amp;oldid=prev"/>
		<updated>2026-04-06T01:25:57Z</updated>

		<summary type="html">&lt;p&gt;nav chg&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Windows&amp;#039;&amp;#039;&amp;#039;-based [[Dragonwilds:Dedicated Servers]] can be set up with the following code (created by [https://discord.com/channels/1249729853096198236/1478071708991623300/1489334213978357921 oi_caveman] and instructions below. &lt;br /&gt;
# Paste the following into a notepad file, and click &amp;quot;save-as&amp;quot; with the &amp;lt;code&amp;gt;.bat&amp;lt;/code&amp;gt; extension.&lt;br /&gt;
# Save it in the same folder as the Dedicated Server&amp;#039;s folder, where it contains the .exe to run the server.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;#039;c&amp;#039;&amp;gt;&lt;br /&gt;
@echo off&lt;br /&gt;
setlocal&lt;br /&gt;
cls&lt;br /&gt;
&lt;br /&gt;
set &amp;quot;ESC=�&amp;quot;&lt;br /&gt;
set &amp;quot;CYAN=%ESC%[96m&amp;quot;&lt;br /&gt;
set &amp;quot;GREEN=%ESC%[92m&amp;quot;&lt;br /&gt;
set &amp;quot;RED=%ESC%[91m&amp;quot;&lt;br /&gt;
set &amp;quot;YELLOW=%ESC%[93m&amp;quot;&lt;br /&gt;
set &amp;quot;RESET=%ESC%[0m&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set &amp;quot;INSTALL_DIR=%~dp0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set &amp;quot;STEAMCMD_PATH=C:\steamcmd\steamcmd.exe&amp;quot;&lt;br /&gt;
set &amp;quot;APP_ID=4019830&amp;quot;&lt;br /&gt;
set &amp;quot;CONFIG_PATH=%INSTALL_DIR%RSDragonwilds\Saved\Config\WindowsServer\DedicatedServer.ini&amp;quot;&lt;br /&gt;
set &amp;quot;BACKUP_PATH=%INSTALL_DIR%DedicatedServer_Backup.ini&amp;quot;&lt;br /&gt;
&lt;br /&gt;
echo ================================================================================&lt;br /&gt;
echo Dragonwilds updater J-mod plz give Caveman icecream. Take it from Mod Icecream lel&lt;br /&gt;
echo ================================================================================&lt;br /&gt;
echo %CYAN%Detected path:%RESET% %INSTALL_DIR%&lt;br /&gt;
echo.&lt;br /&gt;
&lt;br /&gt;
if exist &amp;quot;%CONFIG_PATH%&amp;quot; (&lt;br /&gt;
    echo %CYAN%[STEP 1]%RESET% Backing up DedicatedServer.ini...&lt;br /&gt;
    copy /Y &amp;quot;%CONFIG_PATH%&amp;quot; &amp;quot;%BACKUP_PATH%&amp;quot; &amp;gt;nul&lt;br /&gt;
    echo %GREEN%Backup created successfully.%RESET%&lt;br /&gt;
) else (&lt;br /&gt;
    echo %YELLOW%[SKIP]%RESET% DedicatedServer.ini not found. &lt;br /&gt;
)&lt;br /&gt;
echo.&lt;br /&gt;
&lt;br /&gt;
echo %CYAN%[SO FAR SO GOOD]%RESET% Updating DragonWilds (ID: %APP_ID%)...&lt;br /&gt;
echo %YELLOW%SteamCMD is running, please wait...%RESET%&lt;br /&gt;
&amp;quot;%STEAMCMD_PATH%&amp;quot; +force_install_dir &amp;quot;%INSTALL_DIR%.&amp;quot; +login anonymous +app_update %APP_ID% validate +quit&lt;br /&gt;
echo.&lt;br /&gt;
&lt;br /&gt;
echo %CYAN%[Progressing well]%RESET% Restoring your owner ID and settings...&lt;br /&gt;
if exist &amp;quot;%BACKUP_PATH%&amp;quot; (&lt;br /&gt;
    if not exist &amp;quot;%INSTALL_DIR%RSDragonwilds\Saved\Config\WindowsServer\&amp;quot; (&lt;br /&gt;
        mkdir &amp;quot;%INSTALL_DIR%RSDragonwilds\Saved\Config\WindowsServer\&amp;quot;&lt;br /&gt;
    )&lt;br /&gt;
    copy /Y &amp;quot;%BACKUP_PATH%&amp;quot; &amp;quot;%CONFIG_PATH%&amp;quot; &amp;gt;nul&lt;br /&gt;
    echo.&lt;br /&gt;
    echo %GREEN%[GOOD STUFF m8]%RESET% Update finished. &lt;br /&gt;
    echo %GREEN%Your owner ID is safe and server updated successfully!%RESET%&lt;br /&gt;
) else (&lt;br /&gt;
    echo.&lt;br /&gt;
    echo %RED%[ERROR] No backup found. You may need to enter your owner ID again manually in your ini, sorry m8.%RESET%&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
echo.&lt;br /&gt;
echo %CYAN%------------------------------------------------------------%RESET%&lt;br /&gt;
echo You can now close this window and start your server.&lt;br /&gt;
pause&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Game mechanics}}&lt;/div&gt;</summary>
		<author><name>imported&gt;Keplare</name></author>
	</entry>
</feed>