Search results

  1. bobooski

    Timings not cretae paper

    I don't exactly know why regular Timings isn't working, it's some DNS error (domain, IP, or port issue essentially), but the profiler that Paper now recommends is Spark, which should hopefully not cause the same issue. Spark additionally has the capability of saving the data to a file, and the...
  2. bobooski

    Question Error when place IP in my server!!

    I believe enforce-secure-profiles pertains to whether to allow players to join with mods that disables their own chat signing. If enabled, it will prevent players with these mods from joining. To disable chat signing on the server side, you can install a plugin that does that for you. I haven't...
  3. bobooski

    Question TP Player to another server

    Are you running a paper server with different worlds as different "servers," or are you running some BungeeCord server with multiple different paper servers? (ie. What's your server structure? Your structure changes the answer to this question.)
  4. bobooski

    Living, laughing, and very occasionally, loving.

    Living, laughing, and very occasionally, loving.
  5. bobooski

    Plugin to stop water/lava source blocks from flowing

    If you want to accomplish this with your own plugin, then you would listen to the event BlockFromToEvent, and then you could check if the block had moved was a liquid, and if so, cancel the event. If you want to just set a world guard flag, select the relevant region, and set the region flags...
  6. bobooski

    Ticket Plugin

    You cannot currently have a listener inside of another listener. You will have to play around with external Maps or Lists that you create to store the UUID and other defining data that can be used to differentiate between what the necessary details are to be used back in the GUI. I would...
  7. bobooski

    Plugin Release [Archived] Spartan Webhooks [2.0]

    Spartan Webhooks is a plugin that was developed to solve a problem -- there was no way to send webhooks with essential information to Discord while utilizing the popular Anti-Cheat plugin, Spartan. This project initially started as an independent project to sate only my desire, but has been...
  8. bobooski

    Need help with isJumping method 1.18

    There is most likely something else that you're doing incorrectly that is causing the code not to be run, since yes, the return value of Player#isJumping is indeed a boolean value and that would follow correctly. In what you've provided, nothing is technically incorrect, but it's hard to get a...