Search results

  1. Tacklezaza

    Question Server Keeps Crashing!

    Hi, If you ask question here, you need to provide more information... paper version? latest version? list of plugin And maybe anything useful in server log? (text file)
  2. Tacklezaza

    Autosave

    see Bukkit.yml autosave This bukkit.yml setting allows servers to set the number of ticks for each save-all event. Example Usage: A value of 1 will mean the server will attempt to autosave the world every tick. A value of 6000 will mean the server will attempt to autosave the world every 5...
  3. Tacklezaza

    Question When a player logs off, I want them to log back in to the same server

    You have to use plugin, since Velocity proxy didn't save any player data, so it doesn't save what server is player is joined before leave network Find one or make your own.
  4. Tacklezaza

    Question Cannot access jarfile through bash script

    That very weird, I'm using Linux more than 15 year, I'm never have a problem like that Sorry I can't help 😑 Maybe the last thing you can try.... If it not work then don't forget to restore it back! Try to disable SELinux, This thing can cause a problem sometime when doing some script or...
  5. Tacklezaza

    Question setworldspawn doesn't set... world... spawn

    Hello Did you try something like... OP the player /setworldspawn to that location that you want to setworldspawn /kill yourself. let's see what location that you re-spawn Make sure to not respawn at bed, break it if you re-spawn there If still not working ... remove all plugin then try again...
  6. Tacklezaza

    Question Cant find plugins folder on my TrueNAS server

    Hello, You ask in wrong forums, this is PaperMC which is not associate with MineOS or TrueNas Might be in /var/games/minecraft Or somewhere in jail [TrueNas] /mnt/YOUR_DATASET/jails/mineos???
  7. Tacklezaza

    Question Cannot access jarfile through bash script

    What is in your script start.sh? #!/bin/bash java -Xmx2g -jar paper.jar And execute by bash start.sh Dont forget to chmod your start.sh to make it executeable chmod +x start.sh Does it working? if not What Linux OS did you using? Centos? which version? (7, 8 steam, 9 steam?) And maybe try...
  8. Tacklezaza

    Question Cannot access jarfile through bash script

    Hi, Try this. create directory name "paper" by mkdir paper and "cd" to that directory cd paper Download paper server jar file. name rename it to paper.jar then run it java -Xmx2g -jar paper.jar Is it working?. If not working what does it said in terminal, post your output in this thread
  9. Tacklezaza

    Question How to get the plugin a command is executed by?

    Register listener for any command that being execute. You need to use CommandMap. #getCommand(), then #getPlugin()
  10. Tacklezaza

    Question Server not looking online.

    That might be a problem with your firewall. Did you just run server with your home network?. If yes then welcome to hell. If you don't have knowledge then you're doom
  11. Tacklezaza

    Question Cannot access jarfile through bash script

    Hello, How people on earth use root user to execute program, don't do that always create user and run software with in /home/your_user. Move everything to /home/ directory then we talk
  12. Tacklezaza

    Send event to other server

    Hello, I'm understand what you're try to do. But that is not simple and I think you're post in wrong place, you need to post it on "Waterfall" since Paper is standalone server, If you're working on Network And this is a place to get started (to read and self learning)...
  13. Tacklezaza

    Question Problem with Paper

    Do you still need help. This thread is quiet old with no-one reply. You should clean up your code, and move to somewhere else, of make method that easy to understand. You code being like for(Player player : xxxx){ if(player.biome == snow) if(xxxxx){ if(yyyy){...
  14. Tacklezaza

    Question How to get the plugin a command is executed by?

    So, you want to check who execute the command and you too lazy to check instanceof? Like... boolean hasPermission = false; if(sender instanceOf Player){ Player player = (Player)sender; if(player.isOp()){ hasPermission = true; } } else if(sender instanceOf...
  15. Tacklezaza

    Solved PlayerDeathEvent not working

    You mean event is not being called? What is not working? Did you register event listener onEnable()?