SilabGarza - RuneScape Private Server
NEW CLIENT! required - Printable Version

+- SilabGarza - RuneScape Private Server (https://playsilab.com/forums)
+-- Forum: News (https://playsilab.com/forums/forumdisplay.php?fid=5)
+--- Forum: Announcements (https://playsilab.com/forums/forumdisplay.php?fid=26)
+---- Forum: OLD Updates (https://playsilab.com/forums/forumdisplay.php?fid=29)
+---- Thread: NEW CLIENT! required (/showthread.php?tid=15428)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13


NEW CLIENT! required - klk - 06-24-2010

Woot guys! Big Grin. Guess what, i heard there will be Anchor now! PKing FTW


NEW CLIENT! required - Killa Queen - 06-24-2010

my media wont load and now i cant even see links


NEW CLIENT! required - Gir - 06-24-2010

LINKS ALL FIXED, added to main post


NEW CLIENT! required - klk - 06-24-2010

Uhm, i DL'd it, checked the "Notes", but still got the error. I'll try and re-extract it.


NEW CLIENT! required - The_Mvp - 06-24-2010

I think it's funny how the latest up to date client posted by the owner is rarely viewed but if someone else posted it, it would probablly be viewed by everyone in the server lol.


NEW CLIENT! required - drizzit - 06-24-2010

:]] thxxx


NEW CLIENT! required - Gir - 06-24-2010

The_Mvp Wrote:I think it's funny how the latest up to date client posted by the owner is rarely viewed but if someone else posted it, it would probablly be viewed by everyone in the server lol.
da f u talking about
the views don't update for a while since the forum is big and i don't wanna crash the forums lol, so i set it so it doesn't update views instantly, takes about an hour (like youtube)


and btw...
Currently Active Users Viewing This Thread: 20 (14 members and 6 guests)


NEW CLIENT! required - Bless - 06-24-2010

Nevermind, uploading the new ones now! Smile


NEW CLIENT! required - Killa Queen - 06-24-2010

the system couldnt find the specified path (thats for 32bit not 64 bit)


NEW CLIENT! required - Hunam Safe - 06-24-2010

Run.bat
Run Client x64.bat

Current Client Rating
0/10

Current Problems-Unpacking Takes too long.
Client freezes a lot.
Cannot Walk.
Only can type and PM.
The two batch files are incorrectly written and sourced to the wrong folders.
Takes forever to log-in.
The you cannot move.

To get to what the .bat file contains you need to right-click the batch file and then select the option "Edit".

It will open the code below in a notepad.

Needs to be changed.

Run.bat contains:

Code:
@echo off
COLOR 09
title SilabGarza Client v3.6
cd .\FILES\
java -Xmx1000m -cp .;Theme.jar Bot 0 0 lowmem members 32
pause

Run Client x64.bat contains:

Code:
@echo off
title SilabGarza Client v3.6
cd .\FILES\
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xmx1000m -cp .;Theme.jar Bot 0 0 lowmem members 32
pause

The problem is
Code:
cd .\FILES\

This line of code in the batch file needs to be changed to
Code:
cd .\FILES2\

This needs to be changed because the folder is not named FILES but is named FILES2.

The new code for the Run.bat should be:

Code:
@echo off
COLOR 09
title SilabGarza Client v3.6
cd .\FILES2\
java -Xmx1000m -cp .;Theme.jar Bot 0 0 lowmem members 32
pause

The new code for the Run Client x64.bat should be:

Code:
@echo off
title SilabGarza Client v3.6
cd .\FILES2\
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xmx1000m -cp .;Theme.jar Bot 0 0 lowmem members 32
pause