• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[v144.3] Acernis

(O_o(o_O(O_O)o_O)O_o)
Loyal Member
Joined
Apr 9, 2009
Messages
1,088
Reaction score
322
Possibly you have 2 java versions installed. (check both your x86 program files, and your normal program files. Make sure to uninstall all java, and only install 64x)
 
Newbie Spellweaver
Joined
Mar 25, 2015
Messages
12
Reaction score
0
Possibly you have 2 java versions installed. (check both your x86 program files, and your normal program files. Make sure to uninstall all java, and only install 64x)

EDIT : Nvm, it worked. I redid my whole Java environment variables and restarted my computer. By the way, does anyone know how to use the GM commands in-game? Your help would be much appreciated.
 
Last edited:
Newbie Spellweaver
Joined
Nov 26, 2013
Messages
16
Reaction score
0
EDIT : Nvm, it worked. I redid my whole Java environment variables and restarted my computer. By the way, does anyone know how to use the GM commands in-game? Your help would be much appreciated.
in chat !command- like !level
or !seduce or somefhing
 
(O_o(o_O(O_O)o_O)O_o)
Loyal Member
Joined
Apr 9, 2009
Messages
1,088
Reaction score
322
GM is level 3 and Admin is level 4 if I'm not mistaken. Try that.

anything above the required level should work. Best explanation, he didn't re-build properly? idk. There was this other guy a while back who had the same problem. Re-installing java, re-downloading the source, and re-building it fixed it for him. It must be a fault in setting things up, but i've never encountered it. So i have no clue where it originates from.
 
Junior Spellweaver
Joined
Dec 5, 2007
Messages
121
Reaction score
4
Loading Novak's Development
Host: 127.0.0.1:8484
In-game Version: 144.3
Source Revision: 14
Worlds: Total: 35 Visible: 1
Packet Encryption Detected
Running Threads....... Complete!
Loading Login Server... Complete!
Login Server is listening on port 8484.
Loading Channels...
Channel 1 is listening on port 7575.
Channel 2 is listening on port 7576.
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at jdk.nashorn.internal.ir.FunctionNode.setBody(FunctionNode.java:799)
at jdk.nashorn.internal.ir.FunctionNode.accept(FunctionNode.java:375)
at jdk.nashorn.internal.ir.LexicalContextNode$Acceptor.accept(LexicalCon
textNode.java:57)
at jdk.nashorn.internal.ir.LexicalContextExpression.accept(LexicalContex
tExpression.java:47)
at jdk.nashorn.internal.ir.FunctionNode.accept(FunctionNode.java:58)
at jdk.nashorn.internal.ir.VarNode.accept(VarNode.java:170)
at jdk.nashorn.internal.ir.Node.accept(Node.java:261)
at jdk.nashorn.internal.ir.Block.accept(Block.java:154)
at jdk.nashorn.internal.ir.LexicalContextNode$Acceptor.accept(LexicalCon
textNode.java:57)
at jdk.nashorn.internal.ir.Block.accept(Block.java:401)
at jdk.nashorn.internal.ir.FunctionNode.accept(FunctionNode.java:375)
at jdk.nashorn.internal.ir.LexicalContextNode$Acceptor.accept(LexicalCon
textNode.java:57)
at jdk.nashorn.internal.ir.LexicalContextExpression.accept(LexicalContex
tExpression.java:47)
at jdk.nashorn.internal.ir.FunctionNode.accept(FunctionNode.java:58)
at jdk.nashorn.internal.codegen.CompilationPhase.transformFunction(Compi
lationPhase.java:732)
at jdk.nashorn.internal.codegen.CompilationPhase.access$100(CompilationP
hase.java:69)
at jdk.nashorn.internal.codegen.CompilationPhase$4.transform(Compilation
Phase.java:161)
at jdk.nashorn.internal.codegen.CompilationPhase.apply(CompilationPhase.
java:728)
at jdk.nashorn.internal.codegen.Compiler.compile(Compiler.java:620)
at jdk.nashorn.internal.runtime.Context.compile(Context.java:1242)
at jdk.nashorn.internal.runtime.Context.compileScript(Context.java:1179)


at jdk.nashorn.internal.runtime.Context.compileScript(Context.java:594)
at jdk.nashorn.api.scripting.NashornScriptEngine.compileImpl(NashornScri
ptEngine.java:520)
at jdk.nashorn.api.scripting.NashornScriptEngine.compileImpl(NashornScri
ptEngine.java:509)
at jdk.nashorn.api.scripting.NashornScriptEngine.evalImpl(NashornScriptE
ngine.java:397)
at jdk.nashorn.api.scripting.NashornScriptEngine.eval(NashornScriptEngin
e.java:147)
at javax.script.AbstractScriptEngine.eval(Unknown Source)
at scripting.AbstractScriptManager.getInvocable(AbstractScriptManager.ja
va:67)
at scripting.AbstractScriptManager.getInvocable(AbstractScriptManager.ja
va:45)
at scripting.EventScriptManager.<init>(EventScriptManager.java:40)
at handling.channel.ChannelServer.run_startup_configurations(ChannelServ
er.java:112)
at handling.channel.ChannelServer.startChannel_Main(ChannelServer.java:2
76)

What is the Problem that I have ? I imagine That Has To Do With The JDK
 
Junior Spellweaver
Joined
Dec 5, 2007
Messages
121
Reaction score
4
public static enum PlayerGMRank {


NORMAL('@', 0),
INTERN('!', 1),
GM('!', 2),
SUPERGM('!', 3),
ADMIN('!', 4);
private final char commandPrefix;
private final int level;


PlayerGMRank(char ch, int level) {
commandPrefix = ch;
this.level = level;
}


public String getCommandPrefix() {
return String.valueOf(commandPrefix);
}


public int getLevel() {
return level;
}
}

What is the problem? because I do not see
 
Back
Top