All Projects → Kronos666 → rkon-core

Kronos666 / rkon-core

Licence: MIT License
Source RCON Protocol Java library

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to rkon-core

rcon
Source RCON client for command line
Stars: ✭ 111 (+79.03%)
Mutual labels:  rcon, source-engine
AdminTools
AdminTools for minecraft - rcon and status for mc server and mojang api-s
Stars: ✭ 18 (-70.97%)
Mutual labels:  rcon
leysourceengineclient
A source engine network client implementation based on some of my reversing work with basic functionality ( joining servers, talking, receiving/sending voicedata etc. ). Made this & reversed netchan to learn about Sources networking.
Stars: ✭ 122 (+96.77%)
Mutual labels:  source-engine
sourcebots
Artificial intelligence to create Bots in Source Engine.
Stars: ✭ 16 (-74.19%)
Mutual labels:  source-engine
sourcesdk-minimal
A compact and Garry's Mod compatible SourceSDK (don't use in other Source engine games).
Stars: ✭ 34 (-45.16%)
Mutual labels:  source-engine
icecon
Simple and quick to use RCON tool for IW4M and other Q3-compatible game servers.
Stars: ✭ 32 (-48.39%)
Mutual labels:  rcon
Estranged-Act-1
Source code for the free Steam game, Estranged: Act I.
Stars: ✭ 40 (-35.48%)
Mutual labels:  source-engine
HammerPatch
Modification of Source Valve Hammer Editor to fix some issues. Fixes brush vertex precision loss.
Stars: ✭ 49 (-20.97%)
Mutual labels:  source-engine
Fun
Small fun scripts
Stars: ✭ 22 (-64.52%)
Mutual labels:  source-engine
rcon-web-admin
Self hosted, online RCON administration tool for your game server.
Stars: ✭ 70 (+12.9%)
Mutual labels:  rcon
UE4-DedicatedServer
A UE4 plugin which adds proper console support (input) and RCon
Stars: ✭ 40 (-35.48%)
Mutual labels:  rcon
minecraft-backup
Backup script for Minecraft servers on Linux. Supports screen, tmux, and RCON connections. Supports tar and restic backup format.
Stars: ✭ 140 (+125.81%)
Mutual labels:  rcon
Minecraft-Server-Status
✅一个用于显示服务器在线信息及其他内容的网站
Stars: ✭ 22 (-64.52%)
Mutual labels:  rcon
srctools
Modules for working with Valve's Source Engine file formats.
Stars: ✭ 30 (-51.61%)
Mutual labels:  source-engine
docker-rcon-web-admin
A Docker image that runs rcon-web-admin
Stars: ✭ 34 (-45.16%)
Mutual labels:  rcon
PHP-Vanilla-Buycraft
A basic "BuyCraft" implementation written in PHP for pure vanilla Minecraft servers.
Stars: ✭ 17 (-72.58%)
Mutual labels:  rcon
SourceAutoRecord
Speedrun plugin for Source Engine games.
Stars: ✭ 47 (-24.19%)
Mutual labels:  source-engine
mctools
Minecraft Connection Tools - Python implementations of common Minecraft protocols.
Stars: ✭ 27 (-56.45%)
Mutual labels:  rcon
kero
Kero is a Source Engine game engine client implementation written in Go.
Stars: ✭ 25 (-59.68%)
Mutual labels:  source-engine
lambda-client
A Source Engine BSP Renderer written in Go.
Stars: ✭ 14 (-77.42%)
Mutual labels:  source-engine

rkon-core

⚠️ This repository is archived and thus not maintained anymore.

This is a library for the Source RCON Protocol, it is intended for raw use; there are no presets or built-in commands.

Usage

// Connects to 127.0.0.1 on port 27015
Rcon rcon = new Rcon("127.0.0.1", 27015, "mypassword".getBytes());

// Example: On a minecraft server this will list the connected players
String result = rcon.command("list");

// Display the result in the console
System.out.println(result);

When connecting to the rcon server, an AuthenticationException will be thrown if the password is incorrect.

Download

The latest packed .jar, ready to use as a library, is available here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].