First off, please don't post the regular 317 commands, it's not right for RichScape.
So, I'm working on a Beta, (idk why I chose richscape..), and I'm trying to make a command.
My code:
Code:
if (Command.customCommand("40killcount")) {
SarakillCount = 40;
}
I put it in between this.
Code:
void customCommand(String cmd) {
Command.customCommand(this, cmd);
}
And I get this error.. 
Code:
.\Client.java:7099: customCommand(Client,java.lang.String) in Command cannot be
applied to (java.lang.String)
if (Command.customCommand("40killcount")) {
^
Note: .\Stream.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
1 error
Press any key to continue . . .
I've also tried this.
Code:
if (customCommand("40killcount")) {
SarakillCount = 40;
}
Does anyone know what I could do?
Thanks for any help 
-Tony