npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bdsx/scoreboard-x

v1.2.2

Published

This is a scoreboard plugin for BDSX

Downloads

26

Readme

Scoreboard-X

This is a scoreboard plugin like ScoreHud in PMMP but this plugin is for BDSX. You can customize the scoreboard as you like and you can add addons in this plugin for your scoreboard.

Preview

Commands

  • /scorex < hide|show > - Show ot hide scoreboard.
  • /sbx < hide|show > - Show ot hide scoreboard.

Setup

How to customize the scoreboard

  • Go to the folder where your plugins is located.
  • Find the scoreboard-x plugin folder and open.
  • Open config.json in scoreboard-x plugin.
  • Customize the scoreboard you want.

How to create your addon

  • Go to scoreboard-x plugin folder.
  • Go to addons folder.
  • Create a new typescript file(example.ts).
  • Copy this script and past to your addon file(example.ts).
import { ServerPlayer } from "bdsx/bds/player";
import { AddonData } from "../src/addon";

export function getProcessedTags(player: ServerPlayer): AddonData[] {
    return [
      ["{ping!}", "Pong!"],
    ];
}
  • And you can edit your scoreboard addon.

Author

Other

If you have ideas for future updates or you find bugs in this plugin you can report here.