​error occurred in plugin

  • ich bekomme diesen Fehler beim starten des Plugins. Aber ich finde nichts. woran könnte es liegen. Danke
    I get this error when starting the plugin. But I find nothing. What could it be? Thank you




    error occurred in plugin Info (author lenko) -> null

  • So das zeigt mir die Debugconsole an



    PLUGIN EXCEPTION (Info, 1.0.0, lenko) ---->
    java.lang.ArrayIndexOutOfBoundsException: 1
    at eu.hessenstrolche.info.Info.onPlayerCommand(Info.java:47)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at pluginapi.PluginEventHandler.triggerEvent(SourceFile:169)
    at aG.b.a(SourceFile:190)
    at aG.b.messageReceived(SourceFile:140)
    at j.e.a(SourceFile:109)
    at j.c.run(SourceFile:65)



    Im Spiel kommt nur dieser Fehler wie oben Angezeigt, siehe auch Bild

  • hallo lenko,


    das ist der eigentliche für Dich wichtige Fehler:
    java.lang.ArrayIndexOutOfBoundsException: 1
    at eu.hessenstrolche.info.Info.onPlayerCommand(Info.java:47)


    Hier wird der index eines Arrays überschritten.
    dies tritt in Zeile 47 der Info.java auf.


    beispiel für solch einen Fehler ist:


    char[] name = { 'l', 'e', 'n', 'k', 'o' }; //Länge 5 (0-4)
    char value = name[5] //Hier java.lang.ArrayIndexOutOfBoundsException Ein Array beginnt immer mit index 0! bei 5 Elementen im Array wäre der Index des letzten Elements = 4

    Programmierer machen nie Fehler! Sie bauen nur neue Features ein....

    Edited once, last by Blacky1004 ().

Participate now!

Don’t have an account yet? Create a new account now and be part of our community!