Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bwj3

Pages: [1]
1
Ok so to make the download client work,
go to my computer,
local disc (c:)
then find the folder that says .rspscoding with something else after it,
and change the name of that file to BS_Cache (must have caps BS and C)

Note: you must have downloaded the cache from the webclient for this to work.

Then in your client folder, find run and right click it and press edit for windows xp or vista put this code into it



Code: [Select]
@echo off
Title Client
cd ./Files/
START java -Xmx512m Gui 30 0 lowmem members 32
exit

For windows 7 users put this in there

Code: [Select]
@echo off
title Client
cd ./Files/
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xmx500m Gui 30 0 lowmem members 32
pause

Note: Remember to compile after you have changed the code inside of run.

If your compiler does not work navigate to my computer > local disc (c:), program files, java and find your JDK version e.g mine is jdk1.6.0_22.
Then back to your client right click on compile click edit then add this code below replacing 1.6.0_22 with your version of jdk

Code: [Select]
example
@echo off
Title Compiler
"C:\Program Files\Java\jdk1.6.0_22\bin\javac.exe" *.java
pause

@echo off
Title Compiler
"C:\Program Files\Java\jdk(your jdk version here)\bin\javac.exe" *.java
pause

If you need any more help just pm me on here or in game.

Hope this helps

Cheers Matt

2
NEW FORUMS Divinescape.comuf.com / Re: download client
« on: January 16, 2012, 11:05:47 pm »
ok so to make the download client work, go to computer, local disc (c:) then find the folder that says .rspscoding   with something else after it, and change the name of that file to BS_Cache (must have caps BS and C) then in your client folder find run and right click it and press edit for windows xp or vista put this code into it

Code: [Select]
@echo off
Title Client
cd ./Files/
START java -Xmx512m Gui 30 0 lowmem members 32
exit

For windows 7 users put this in there

Code: [Select]
@echo off
title Client
cd ./Files/
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xmx500m Gui 30 0 lowmem members 32
pause

Hope this helps

Cheers Matt

Pages: [1]