• Welcome to ForumKorner!
    Join today and become a part of the community.

Need help with commands.

exoinsiders

Member
Reputation
0
So i'm plugging in a master command for my Rsps. It's completely cleaned delta source (using delta because i'm new). So anyways I'm plugging in my master command, and i'm ending up with this error when compiling....

.\src\server\client.java:6453: class, interface, or enum expected
if(command.equalsIgnoreCase("master") && playerRights >= 1) {
^
.\src\server\client.java:6454: class, interface, or enum expected
for(int i = 0; i < 21; i++) {
^
.\src\server\client.java:6454: class, interface, or enum expected
for(int i = 0; i < 21; i++) {
^
3 errors
Press any key to continue . . .




My code looks like this......


if(command.equalsIgnoreCase("master") && playerRights >= 1) {
for(int i = 0; i < 21; i++) {
addSkillXP(14000000, i);

Anyone know how to fix the error?
 
Top