KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
mcping
★ 8
Open GitHub ↗
[Ready to Use] ping any minecraft server
Download README (.md)
Explore Similar Repositories
zippy
:
No description available.
blitter
:
Yet another bitmap blitting library for Rust.
hackintosh_redmibook
:
RedmiBook 14 i5 8G 512GB MX250 银色, i5-8265U MX250黑苹果EFI配置,以及一些工具
win95-web
:
A (vastly barebones) web implementation of Microsoft's Windows 95
proof-points
:
Documentation, Javascript package and smart contracts for working with Provenance Proof Points
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
mcping
?
Download (.md)
# mcping Ping your mincraft server with a simple command! This program can also download favicon. ```shell $ mcping play.miaoscraft.cn MCPING (play.miaoscraft.cn:25565): server: Spigot 1.15.2 protocol: 578 description: Miaoscraft! delay: 42.200607ms list: 2/18 - [defevt] 30e0098b-20a7-4067-b552-73517ad146dc - [Wizard_BOSS] 664b582d-8838-4761-b011-c3852004f47d ``` ## install ```shell $ go version # installed golang go version go1.13.4 darwin/amd64 $ go get github.com/go-mc/mcping/mcping # install ``` Please ensure `$GOPATH/bin` or `$GOBIN` is in your `$PATH`.Because mcping will be installed in `$(go env GOPATH)/bin`. Or you can `go build` and move the executable to your `$PATH`. Or run it directly. ## usage ```shell mcping host:port # ping specific server mcping host # ping default port (25565) mcping -p 404 host # specific protocol version mcping -f icon.png host # save server's favicon mcping -f="/path with spaces/icon.png" host ``` > mcping will lookup SRV record if port is 25565 (include default set) as same as Minecraft itself. ## programming [](https://pkg.go.dev/github.com/go-mc/mcping?tab=doc) ```go import "github.com/go-mc/mcping" ```