evilfreelancer/samp-api-php

GTA San Andreas Multiplayer PHP client for work with remote console

dev-master 2020-04-13 22:38 UTC

This package is auto-updated.

Last update: 2024-04-14 08:13:15 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