[v144.3] Acernis

Page 16 of 44 FirstFirst ... 68910111213141516171819202122232426 ... LastLast
Results 226 to 240 of 656
  1. #226
    (O_o(o_O(O_O)o_O)O_o) Novak is offline
    MemberRank
    Apr 2009 Join Date
    The NetherlandsLocation
    1,120Posts

    Re: [v144.3] Acernis

    are you able to chat at all in game?

  2. #227
    Apprentice Ong Ding Chao is offline
    MemberRank
    Mar 2015 Join Date
    12Posts

    Re: [v144.3] Acernis

    Quote Originally Posted by Mallissy View Post
    Try setting it to 6
    Still not working. Does it have anything to do with the commands in the scripts? I dont even know if there are commands at all. Thanks anyways.

  3. #228
    Account Upgraded | Title Enabled! Lemoness is offline
    MemberRank
    May 2008 Join Date
    269Posts

    Re: [v144.3] Acernis

    GM is level 3 and Admin is level 4 if I'm not mistaken. Try that.

  4. #229
    (O_o(o_O(O_O)o_O)O_o) Novak is offline
    MemberRank
    Apr 2009 Join Date
    The NetherlandsLocation
    1,120Posts

    Re: [v144.3] Acernis

    Quote Originally Posted by Lemoness View Post
    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.

  5. #230
    Valued Member Elfenix500 is offline
    MemberRank
    Dec 2007 Join Date
    127Posts

    Re: [v144.3] Acernis

    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

  6. #231
    Account Upgraded | Title Enabled! mixtamal6 is offline
    MemberRank
    Mar 2013 Join Date
    686Posts

    Re: [v144.3] Acernis

    @Ong Ding Chao
    Show in serverconstans and find "playergmtype"
    Sgm(3)
    Admin(4)
    Etc...

  7. #232
    Valued Member Elfenix500 is offline
    MemberRank
    Dec 2007 Join Date
    127Posts

    Re: [v144.3] Acernis

    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

  8. #233
    Apprentice Ong Ding Chao is offline
    MemberRank
    Mar 2015 Join Date
    12Posts

    Re: [v144.3] Acernis

    Quote Originally Posted by mixtamal6 View Post
    @Ong Ding Chao
    Show in serverconstans and find "playergmtype"
    Sgm(3)
    Admin(4)
    Etc...
    Ignore the error 38 part. I just want to know why monsters aren't dropping anything
    Last edited by Ong Ding Chao; 27-03-15 at 09:44 AM.

  9. #234
    Apprentice Mongie is offline
    MemberRank
    Dec 2013 Join Date
    Hanoi, Vietnam,Location
    14Posts

    Re: [v144.3] Acernis

    novak when you release next dev

  10. #235
    Account Upgraded | Title Enabled! Snopboy is offline
    MemberRank
    Sep 2011 Join Date
    Kerning PQLocation
    1,057Posts

    Re: [v144.3] Acernis

    Quote Originally Posted by Elfenix500 View Post
    What is the Problem that I have ? I imagine That Has To Do With The JDK
    It clearly says "Java heap space", which is the memory your Java Virtual Machine is using (if I'm not wrong, lol).
    You should set it to a higher number.

  11. #236
    Account Upgraded | Title Enabled! mixtamal6 is offline
    MemberRank
    Mar 2013 Join Date
    686Posts

    Re: [v144.3] Acernis

    Idk mongie
    Last edited by mixtamal6; 28-03-15 at 04:41 AM.

  12. #237
    Apprentice Mongie is offline
    MemberRank
    Dec 2013 Join Date
    Hanoi, Vietnam,Location
    14Posts

    Re: [v144.3] Acernis

    how to change exp rate

  13. #238
    Apprentice frank863 is offline
    MemberRank
    Apr 2014 Join Date
    24Posts

    Re: [v144.3] Acernis

    Compile java

  14. #239
    (O_o(o_O(O_O)o_O)O_o) Novak is offline
    MemberRank
    Apr 2009 Join Date
    The NetherlandsLocation
    1,120Posts

    Re: [v144.3] Acernis

    Post updated/ cleaned. Rev 17.5 now available.

  15. #240
    Apprentice frank863 is offline
    MemberRank
    Apr 2014 Join Date
    24Posts

    Re: [v144.3] Acernis

    Quote Originally Posted by Novak View Post
    Post updated/ cleaned. Rev 17.5 now available.
    Update records?



Advertisement