You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Pavel Djundik 3c0ca191b5
Pass in callable correctly
9 years ago
Examples Prevent tables overflowing 9 years ago
SourceQuery Pass in callable correctly 9 years ago
Tests Pass in callable correctly 9 years ago
.codeclimate.sh Make .codeclimate.sh executable 9 years ago
.codeclimate.yml Disable more camelcase goodness 9 years ago
.editorconfig Create .editorconfig 9 years ago
.gitattributes Normalize line endings 10 years ago
.gitignore Update .gitignore 9 years ago
.travis.yml Add some GetInfo tests 9 years ago
LICENSE Create LICENSE 10 years ago
README.md Fix module name and readme 9 years ago
composer.json Add some GetInfo tests 9 years ago

README.md

PHP Source Query Packagist Packagist

This class was created to query game server which use the Source query protocol, this includes all source games, and all the games that implement Steamworks.

The class also allows you to query servers using RCON although this only works for half-life 1 and source engine games.

Minecraft also uses Source RCON protocol, and this means you can use this class to send commands to your minecraft server while having engine set to Source engine.

⚠️ Please do not create issues when you are unable to retrieve information from a server, unless you can prove that there is a bug within the library.

Requirements

Protocol Specifications

Supported Games

AppID Game Query RCON Notes
~ All HL1/HL2 games and mods
10 Counter-Strike 1.6
730 Counter-Strike: Global Offensive
440 Team Fortress 2
550 Left 4 Dead 2
1002 Rag Doll Kung Fu
2400 The Ship
4000 Garry's Mod
17710 Nuclear Dawn
70000 Dino D-Day
107410 Arma 3 Add +1 to the server port
115300 Call of Duty: Modern Warfare 3
211820 Starbound Call SetUseOldGetChallengeMethod method after connecting
252490 Rust Add +1 to the server port
346110 ARK: Survival Evolved
Minecraft

Open a pull request if you know another game which supports Source Query and/or RCON protocols.

How to tell if the game supports Source Query Protocol?

Add your server to your favourites in Steam server browser, and if Steam can display information about your server, then the protocol is supported.

Functions

Connect( $Ip, $Port, $Timeout, $Engine ) Opens connection to a server
Disconnect( ) Closes all open connections
Ping( ) Ping the server to see if it exists
Warning: Source engine may not answer to this
GetInfo( ) Returns server info in an array
GetPlayers( ) Returns players on the server in an array
GetRules( ) Returns public rules (cvars) in an array
SetRconPassword( $Password ) Sets rcon password for later use with Rcon()
Rcon( $Command ) Execute rcon command on the server

Also refer to examples folder to work things out.

License

PHP Source Query
Copyright (C) 2012-2015 Pavel Djundik

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA