aliuly submitted a new plugin: GrabBag - A grab bag collection of commands and listener modules Read more about this plugin...
aliuly updated GrabBag with a new update entry: Additional functionality Read the rest of this update entry...
In the reply you (developer of this plugin) told me the whois command does more than mine. Whats more?
Code: version: 1.1.2 # # Sample modules.yml # # To disable features, comment them out using "#" # listener: adminjoin:# spawnitems:# spawnarmor:# compasstp:# repeater: I did do "#" , i did server restart and the file resets and admin join shows again. how do i do this properly so that there is no admin join ?
You re supposed to comment it out: Code: listener: # adminjoin: # spawnitems: # spawnarmor: # compasstp: repeater:
aliuly updated GrabBag with a new update entry: Additional functionality Read the rest of this update entry...
Oh! Taking a look at the code, I figured out that it was the Ops online feature that tells you if an op is online! Code: private function cmdOps(CommandSender $c,$args) { $txt = [ "" ]; $pageNumber = $this->getPageNumber($args); $cnt=0; foreach (array_keys($this->getServer()->getOps()->getAll()) as $opname) { $p = $this->getServer()->getPlayer($opname); if($p && ($p->isOnline() && (!($c instanceof Player) || $c->canSee($p)))){ ++$cnt; $txt[] = TextFormat::BLUE."$opname (online)".TextFormat::RESET; }else{ $txt[] = TextFormat::RED."$opname".TextFormat::RESET; } } $txt[0] = "Server Ops (Online:$cnt)"; return $this->paginateText($c,$pageNumber,$txt); } yeah, all you need to do is re-op everybody and it should work again.
Okay, @HellBublz. I have made a fix for you. This version should work, but since I don't have access to any phar converter at all, I had to raw rename to .phar Anyways, I will give you the plugin in .phar and a zip (use DevTools to make the plugin into .phar). I just made it so that instead of accessing the .txt file, it will print a simple message to the console saying that it doesn't work and has bee removed. Take away the original plugin and put this modified one in.