User Tools

Site Tools


servers:windows:games:void_localhost

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
servers:windows:games:void_localhost [2026/04/01 21:30] – [Server Start] Sean Rhoneservers:windows:games:void_localhost [2026/05/30 19:45] (current) Sean Rhone
Line 1: Line 1:
 ====== Information ====== ====== Information ======
  
-  * Void Server ((https://github.com/GregHib/void))+  * Void Server
  
 ===== Prerequisites ===== ===== Prerequisites =====
Line 7: Line 7:
   * [[windows:10|Windows 10 (21H2)]]   * [[windows:10|Windows 10 (21H2)]]
   * [[programs;windows;git|Git]]   * [[programs;windows;git|Git]]
-  * [[games;windows;void_runescape_634|Void Client]]+ 
 +===== Notes ===== 
 + 
 +  For a game client, see [[games;windows;void_runescape_634|Void Client]]
  
 ====== Dependencies ====== ====== Dependencies ======
Line 20: Line 23:
  
   * https://aka.ms/download-jdk/microsoft-jdk-25-windows-x64.msi   * https://aka.ms/download-jdk/microsoft-jdk-25-windows-x64.msi
-  * Last tested: ''microsoft-jdk-25.0.2-windows-x64.msi''+  * Last tested: ''microsoft-jdk-25.0.3-windows-x64.msi''
  
   * Entire feature install of ''Microsoft Build of OpenJDK''   * Entire feature install of ''Microsoft Build of OpenJDK''
Line 50: Line 53:
 ====== Settings ====== ====== Settings ======
  
-  * Last commit: [[https://github.com/GregHib/void/commit/a32ed0d4c346b225459b4a0d99a19d25e0116bc4|Mar 27, 2026]] ''a32ed0d''+  * Last commit: [[https://github.com/GregHib/void/commit/a543a8b41fc8f16394fd98c57fa5ef4c2375e98c|May 10, 2026]] ''a543a8b''
   * [[https://github.com/GregHib/void/commits/main/game/src/main/resources/game.properties|New commits check]]   * [[https://github.com/GregHib/void/commits/main/game/src/main/resources/game.properties|New commits check]]
   * [[https://github.com/GregHib/void/blob/main/game/src/main/resources/game.properties|Upstream Settings]] ([[https://raw.githubusercontent.com/GregHib/void/refs/heads/main/game/src/main/resources/game.properties|raw]])   * [[https://github.com/GregHib/void/blob/main/game/src/main/resources/game.properties|Upstream Settings]] ([[https://raw.githubusercontent.com/GregHib/void/refs/heads/main/game/src/main/resources/game.properties|raw]])
  
-  COPY /Y "%UserProfile%\Projects\Void-Server\src\game\src\main\resources\game.properties" "%UserProfile%\Projects\Void-Server\src"+  COPY /Y "%UserProfile%\Projects\Void-Server\src\game\src\main\resources\game.properties" "%UserProfile%\Projects\Void-Server\src\game.properties"
  
   MKDIR "%UserProfile%\Projects\Void-Server\scripts" & "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\Void-Server\scripts\server-settings-sed.sh"   MKDIR "%UserProfile%\Projects\Void-Server\scripts" & "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\Void-Server\scripts\server-settings-sed.sh"
Line 66: Line 69:
 '/usr/bin/sed' -i -e 's/server.live=false/server.live=true/g' ~/'Projects/Void-Server/src/game.properties' '/usr/bin/sed' -i -e 's/server.live=false/server.live=true/g' ~/'Projects/Void-Server/src/game.properties'
 '/usr/bin/sed' -i -e 's/development.admin.name=Greg/development.admin.name=Test/g' ~/'Projects/Void-Server/src/game.properties' '/usr/bin/sed' -i -e 's/development.admin.name=Greg/development.admin.name=Test/g' ~/'Projects/Void-Server/src/game.properties'
 +'/usr/bin/sed' -i -e 's/grandExchange.enabled=true/grandExchange.enabled=false/g' ~/'Projects/Void-Server/src/game.properties'
 '/usr/bin/sed' -i -e 's/bots.count=30/bots.count=0/g' ~/'Projects/Void-Server/src/game.properties' '/usr/bin/sed' -i -e 's/bots.count=30/bots.count=0/g' ~/'Projects/Void-Server/src/game.properties'
 +'/usr/bin/sed' -i -e 's/storage.players.logs.seconds=10/storage.players.logs.seconds=300/g' ~/'Projects/Void-Server/src/game.properties'
  
 # End</code> # End</code>
  
   "%ProgramFiles%\Git\bin\sh.exe" -- "%UserProfile%\Projects\Void-Server\scripts\server-settings-sed.sh"   "%ProgramFiles%\Git\bin\sh.exe" -- "%UserProfile%\Projects\Void-Server\scripts\server-settings-sed.sh"
 +
 +===== Check =====
 +
 +  "%SystemRoot%\System32\findstr.exe" "server.name server.live development.admin.name world.experienceRate=1.0 grandExchange.enabled bots.count storage.players.logs.seconds" "%UserProfile%\Projects\Void-Server\src\game.properties"
  
   "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\Void-Server\src\game.properties"   "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\Void-Server\src\game.properties"
Line 89: Line 98:
 CD "%Temp%" CD "%Temp%"
  
-START "Void Server" /MIN /D "%UserProfile%\Projects\Void-Server\src" "java.exe" -jar "%UserProfile%\Projects\Void-Server\src\game\build\libs\void-server-dev.jar"+START "Void Server" /MIN /D "%UserProfile%\Projects\Void-Server\src" "%JAVA_HOME%\bin\java.exe" -jar "%UserProfile%\Projects\Void-Server\src\game\build\libs\void-server-dev.jar"
  
 :: End</code> :: End</code>
Line 118: Line 127:
 CD "%Temp%" CD "%Temp%"
  
-COPY /Y "%UserProfile%\Projects\Void-Server\src\game\src\main\resources\game.properties" "%UserProfile%\Projects\Void-Server\src"+COPY /Y "%UserProfile%\Projects\Void-Server\src\game\src\main\resources\game.properties" "%UserProfile%\Projects\Void-Server\src\game.properties"
 "%ProgramFiles%\Git\bin\sh.exe" -- "%UserProfile%\Projects\Void-Server\scripts\server-settings-sed.sh" "%ProgramFiles%\Git\bin\sh.exe" -- "%UserProfile%\Projects\Void-Server\scripts\server-settings-sed.sh"
  
Line 200: Line 209:
  
   MKDIR "%UserProfile%\Projects\Void-Server\src\data\saves" & "%SystemRoot%\explorer.exe" "%UserProfile%\Projects\Void-Server\src\data\saves"   MKDIR "%UserProfile%\Projects\Void-Server\src\data\saves" & "%SystemRoot%\explorer.exe" "%UserProfile%\Projects\Void-Server\src\data\saves"
 +
 +===== Hide Gradle Folder =====
 +
 +****
 +
 +  "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.gradle"
  
/srv/www/wiki/data/attic/servers/windows/games/void_localhost.1775093444.txt.gz · Last modified: by Sean Rhone

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki