Posts by james1bow

    I'm currently in the process of recoding all of them. Should be ready in a month or so. I will video tutorials for them then.

    I had the same issue as well. I don't know anything about containers but, that's why I use a program called restart on crash. I just shut the server down with my plugin and use the restart on crash to start it back up 15 seconds later.

    Singleplayer. Testing it that way before I put it on our server.

    you should just have to place it into the plugins folder. tho, it does extract into an extra folder. the final structure should be plugins>backpack> Backpack.jar and Backpack.properties.

    the PlayerUITextFieldChangeEvent event is never triggered.


    Java
    @EventMethod
    public void textChange(PlayerUITextFieldChangeEvent event){
    println(event.getNewText(), 10);
    if(event.getPlayer().equals(playerController.getPlayer()) && event.getUITextField().equals(messageTextField)){
    String text = event.getNewText();
    this.message = text;
    playerController.getPlayer().sendTextMessage(String.valueOf(text.length()));
    }
    }

    it looks like the methods to update the area3d position do not work. not sure of the impact on performance but removing them is the only way i could get it to work.