Giter Club home page Giter Club logo

g-rcon's Introduction

GRcon is a PHP library for manage game servers and services using RCON protocol.

Supported protocols

  • Source (CS Global Offensive, Team Fortress 2, Black Mesa)
  • GoldSource (CS 1.6, Half-Life game servers, etc.)
  • Minecraft
  • TeamSpeak 3
  • SAMP (GTA San-Andreas Multiplayer)
  • Rust

Comming soon

  • Arma

Installation

composer require knik/g-rcon --no-dev

Examples

EasyGRcon

EasyGRcon is more simpler then GRcon

include "../vendor/autoload.php";

use Knik\GRcon\EasyGRcon;

$rcon = new EasyGRcon('source', [
    'host' => '127.0.0.1',
    'port' => 27015,
    'password' => 'rC0nPaS$word'
]);

$rcon->execute('changelevel de_dust2');
$rcon->execute('kick player');

GRcon

GRcon is more flexible and configurable

use Knik\GRcon\GRcon;
use Knik\GRcon\Protocols\SourceAdapter;

$adapter = new SourceAdapter([
    'host' => '127.0.0.1',
    'port' => 27015,
    'password' => 'rC0nPaS$word',
]);

$rcon = new GRcon($adapter);

$rcon->execute('changelevel de_dust2');
$rcon->execute('kick player');

Players manage

$rcon->kick('playername');
$rcon->ban('player');

Chat

$rcon->sendMessage('Hello players!');

g-rcon's People

Contributors

et-nik avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

alvinavanima

g-rcon's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.