User Tools

Site Tools


games:windows:rt4_client_runescape_530

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
games:windows:rt4_client_runescape_530 [2026/01/24 05:18] – [Client Update] Sean Rhonegames:windows:rt4_client_runescape_530 [2026/02/13 05:39] (current) – [Client Update] Sean Rhone
Line 20: Line 20:
  
   * 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.1-windows-x64.msi''+  * Last tested: ''microsoft-jdk-25.0.2-windows-x64.msi''
  
   * Entire feature install of ''Microsoft Build of OpenJDK''   * Entire feature install of ''Microsoft Build of OpenJDK''
Line 27: Line 27:
  
   * https://aka.ms/download-jdk/microsoft-jdk-17-windows-x64.msi   * https://aka.ms/download-jdk/microsoft-jdk-17-windows-x64.msi
-  * Last tested: ''microsoft-jdk-17.0.17-windows-x64.msi''+  * Last tested: ''microsoft-jdk-17.0.18-windows-x64.msi''
  
   * :!: All secondary features manually-marked unavailable   * :!: All secondary features manually-marked unavailable
Line 41: Line 41:
 ===== Settings ===== ===== Settings =====
  
-  MKDIR "%UserProfile%\Projects\RT4-Client\scripts" & "notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-settings-sed.sh"+  MKDIR "%UserProfile%\Projects\RT4-Client\scripts" & "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-settings-sed.sh"
  
 <code> <code>
Line 57: Line 57:
   "%ProgramFiles%\Git\bin\sh.exe" -- "%UserProfile%\Projects\RT4-Client\scripts\client-settings-sed.sh"   "%ProgramFiles%\Git\bin\sh.exe" -- "%UserProfile%\Projects\RT4-Client\scripts\client-settings-sed.sh"
  
-  TYPE "%UserProfile%\Projects\RT4-Client\src\client\src\main\java\rt4\GlobalConfig.java"FIND "public static boolean"+  TYPE "%UserProfile%\Projects\RT4-Client\src\client\src\main\java\rt4\GlobalConfig.java""%SystemRoot%\System32\find.exe" "public static boolean"
  
 ===== Build ===== ===== Build =====
  
-  CD "%UserProfile%\Projects\RT4-Client\src" && SET "JAVA_HOME=%ProgramFiles%\Microsoft\jdk-17.0.17.10-hotspot" && "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "clean" --no-daemon && SET "JAVA_HOME="+  CD "%UserProfile%\Projects\RT4-Client\src" && SET "JAVA_HOME=%ProgramFiles%\Microsoft\jdk-17.0.18.8-hotspot" && "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "clean" --no-daemon && SET "JAVA_HOME="
  
-  CD "%UserProfile%\Projects\RT4-Client\src" && SET "JAVA_HOME=%ProgramFiles%\Microsoft\jdk-17.0.17.10-hotspot" && "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "jar" --no-daemon && SET "JAVA_HOME="+  CD "%UserProfile%\Projects\RT4-Client\src" && SET "JAVA_HOME=%ProgramFiles%\Microsoft\jdk-17.0.18.8-hotspot" && "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "jar" --no-daemon && SET "JAVA_HOME="
  
 ====== Settings ====== ====== Settings ======
Line 71: Line 71:
   * [[https://gitlab.com/2009scape/rt4-client/-/blob/master/client/config.json?ref_type=heads|Upstream client/config.json]] ([[https://gitlab.com/2009scape/rt4-client/-/raw/master/client/config.json?ref_type=heads|raw]])   * [[https://gitlab.com/2009scape/rt4-client/-/blob/master/client/config.json?ref_type=heads|Upstream client/config.json]] ([[https://gitlab.com/2009scape/rt4-client/-/raw/master/client/config.json?ref_type=heads|raw]])
  
-  MKDIR "%UserProfile%\Projects\RT4-Client\conf" & "notepad.exe" "%UserProfile%\Projects\RT4-Client\conf\localhost.json"+  MKDIR "%UserProfile%\Projects\RT4-Client\conf" & "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\RT4-Client\conf\localhost.json"
  
 <code> <code>
Line 90: Line 90:
   MKDIR "%UserProfile%\Projects\RT4-Client\scripts" "%UserProfile%\Projects\RT4-Client\cache"   MKDIR "%UserProfile%\Projects\RT4-Client\scripts" "%UserProfile%\Projects\RT4-Client\cache"
  
-  "explorer.exe" "%UserProfile%\Projects\RT4-Client\scripts"+  "%SystemRoot%\explorer.exe" "%UserProfile%\Projects\RT4-Client\scripts"
  
 ===== Client Start ===== ===== Client Start =====
  
-  "notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-start.bat"+  "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-start.bat"
  
 <code> <code>
Line 113: Line 113:
 ==== High DPI ==== ==== High DPI ====
  
-  "notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-hidpi-start.bat"+  "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-hidpi-start.bat"
  
 <code> <code>
Line 132: Line 132:
 ===== Client Update ===== ===== Client Update =====
  
-  "notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-update.bat"+  "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Projects\RT4-Client\scripts\client-update.bat"
  
 <code> <code>
Line 147: Line 147:
 CD "%UserProfile%\Projects\RT4-Client\src" CD "%UserProfile%\Projects\RT4-Client\src"
  
-SET "JAVA_HOME=%ProgramFiles%\Microsoft\jdk-17.0.17.10-hotspot"+SET "JAVA_HOME=%ProgramFiles%\Microsoft\jdk-17.0.18.8-hotspot
 +SET "_JAVA_OPTIONS=--add-exports=java.base/sun.nio.ch=ALL-UNNAMED"
  
-CALL "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "clean" --no-daemon +CALL "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "client:clean" --no-daemon -q 1> NUL 
-CALL "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "jar" --no-daemon+CALL "%UserProfile%\Projects\RT4-Client\src\gradlew.bat" "client:jar" --no-daemon -q > NUL 2>&1
  
 SET "JAVA_HOME=" SET "JAVA_HOME="
 +SET "_JAVA_OPTIONS="
  
-MSG %USERNAME% /TIME:"2" "2009Scape RT4 Client update complete"+"%SystemRoot%\System32\msg.exe" %USERNAME% /TIME:"2" "2009Scape RT4 Client update complete"
  
 :: End</code> :: End</code>
Line 204: Line 206:
 **** ****
  
-  MKDIR "%AppData%\Microsoft\Windows\Start Menu\Programs\2009Scape" & "explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\2009Scape"+  MKDIR "%AppData%\Microsoft\Windows\Start Menu\Programs\2009Scape" & "%SystemRoot%\explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\2009Scape"
  
 ==== Client ==== ==== Client ====
/usr/local/www/wiki/data/attic/games/windows/rt4_client_runescape_530.1769249920.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