Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Need help with my RSPS run.bat

Initiate Mage
Joined
Jul 18, 2012
Messages
2
Reaction score
0
c9bbc324d0958af2f5250ddd5c8f5476 - Need help with my RSPS run.bat - RaGEZONE Forums

It says java is not recognized as an internal or external command, operable program or bath file

Can someone please help me? I can seem to get my client or source to load because of the same error.
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Jul 19, 2012
Messages
1
Reaction score
0
Right click on the run.bat file and click "Edit" copy the text and post it here.
I will edit it for you. :)
 
Newbie Spellweaver
Joined
Sep 11, 2012
Messages
19
Reaction score
0
I have the same problem with my
 
right + down + X
Loyal Member
Joined
May 25, 2006
Messages
1,688
Reaction score
298
You don't have your environment variables set up

xp / windows 7: start > Right click "My computer" > properties > Advanced System Settings > advanced > Environment Variables > Under system variables, click on the variable "path" and click edit below it > Add your java install path

Your java install path is where you... installed it. Example, mine is C:\Program Files\Java\jdk1.7.0_01\bin

Yours might be similar, but it might not. you might have a JRE folder, not a jdk folder (if you don't develop java)

On Vista, right click the run.bat > edit > replace the line that says "java" with your installation path, plus java.exe in quotations

java > "C:\Program Files\Java\jdk1.7.0_01\bin\java.exe"

save it, and run it.

If you can't follow these instructions without success... Uh google it?
 
Initiate Mage
Joined
Sep 7, 2013
Messages
1
Reaction score
0
Right click on the run.bat file and click "Edit" copy the text and post it here.
I will edit it for you. :)


​@echo off@title Build
javac -d bin\ src\*.java
Echo Complete
pause
exit

Right click on the run.bat file and click "Edit" copy the text and post it here.
I will edit it for you. :)


​@echo off@title Build
javac -d bin\ src\*.java
Echo Complete
pause
exit
 
Newbie Spellweaver
Joined
Nov 5, 2013
Messages
5
Reaction score
0
Lol just download JDK off of Also environment variables are only for compiling and if you're using a Java IDE it's not required. Netbeans or Eclipse.
 
Back
Top