Solved Deop Offline Players

Discussion in 'Plugin Development' started by AXCoding, Jul 15, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    AXCoding

    Hi, I'm developing a plugin that needs to be able to DEOP offline people. The method
    Code:
    player.setOp(false)
    Only works on online players... Is there a way to DEOP offline people? Perhaps by directly writing to the OP.txt file?
     
  2. Offline

    ImIreEZz

    Try deop them on QuitEvent?
     
  3. Offline

    Onlineids

    AXCoding OfflinePlayer p = Bukkit.getOfflinePlayer("Notch");
    p.setOp(false);
    ^ This will deop notch even if he is offline
     
  4. Offline

    AXCoding

    Yeah, I figured out that you had to declare as OfflinePlayer instead of Player! Thanks for the help Onlineids
     
Thread Status:
Not open for further replies.

Share This Page