|
1 |
| -# clientviewer |
2 |
| -A Paper plugin to see the type clients that players use to play on servers |
| 1 | +# ClientViewer |
| 2 | +[](https://jitpack.io/#aivruu/clientviewer) |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | +`clientviewer` is a Paper plugin that allows to see the information about the client of any player use on your server. |
| 9 | + |
| 10 | +> [!NOTE]\ |
| 11 | +> As the client is who provide this information, there's the possibility that some clients can modify this |
| 12 | +> information to deceive, like provide a non-suspicious brand-name or protocol number, The plugin can block clients with |
| 13 | +> invalid, or specific brand-names, but yet there's the possibility that a client can bypass this. |
| 14 | +
|
| 15 | +### Documentation |
| 16 | +- [Javadoc](https://jitpack.io/com/github/aivruu/clientviewer/latest/javadoc/) |
| 17 | + |
| 18 | +### Features |
| 19 | +- Check what clients types and versions use the players. |
| 20 | +- Prevent that clients with non-provided brand names can join. |
| 21 | +- Prevent that specified clients can join. |
| 22 | + |
| 23 | +## Requirements |
| 24 | +- [Paper](https://papermc.io/downloads/paper) 1.19+ |
| 25 | +- Java 17+ |
| 26 | + |
| 27 | +### Download |
| 28 | +You can visualize the latest version on the document header, or at the GitHub releases page. |
| 29 | +```kotlin |
| 30 | +repositories { |
| 31 | + maven("https://jitpack.io/") |
| 32 | +} |
| 33 | + |
| 34 | +dependencies { |
| 35 | + compileOnly("com.github.aivruu:clientviewer:VERSION") |
| 36 | +} |
| 37 | +``` |
| 38 | + |
| 39 | +```xml |
| 40 | +<repositories> |
| 41 | + <repository> |
| 42 | + <id>jitpack-repo</id> |
| 43 | + <url>https://jitpack.io/</url> |
| 44 | + </repository> |
| 45 | +</repositories> |
| 46 | + |
| 47 | +<dependency> |
| 48 | + <groupId>com.github.aivruu</groupId> |
| 49 | + <artifactId>clientviewer</artifactId> |
| 50 | + <version>VERSION</version> |
| 51 | +</dependency> |
| 52 | +``` |
| 53 | + |
| 54 | +### Building |
| 55 | +This library use Gradle-Kotlin for project structuration and building. |
| 56 | +``` |
| 57 | +git clone https://github.com/aivruu/clientviewer.git |
| 58 | +cd clientviewer |
| 59 | +./gradlew build |
| 60 | +``` |
| 61 | + |
| 62 | +JDK 17 or newer is fully required. |
0 commit comments