evilfreelancer / samp-api-php
GTA San Andreas Multiplayer PHP client for work with remote console
dev-master
2020-04-13 22:38 UTC
Requires
- ext-json: *
Requires (Dev)
- larapack/dd: ^1.1
- phpunit/phpunit: ^9.1
This package is auto-updated.
Last update: 2024-11-14 09:34:44 UTC
README
Simple PHP client for San Andreas Multiplayer server for executing commands on remote console.
composer require evilfreelancer/samp-api-php
How to use
<?php require_once __DIR__ . '/../vendor/autoload.php'; $config = new \SampApi\Config([ 'server' => 'localhost', 'port' => '7777', 'password' => '12345', ]); $client = new \SampApi\Rcon($config); // Get list of vars (only this method is ready for right now) $response = $client->getVarlist(); dump($response); // Another way $response = $client->send('varlist'); dump($response); // Yet another way, OOP style $client->responseModel = true; $response = $client->getVarlist(); dump($response);
List of all available commands can be found here.
Links
Documentation and some important links
Alternatives