PHP Source Query
4.0.0
创建此类是为了查询使用源查询协议的游戏服务器,这包括所有源游戏以及所有实现 Steamworks 的游戏。
该类还允许您使用 RCON 查询服务器,尽管这只适用于 half-life 1 和源引擎游戏。
Minecraft 还使用 Source RCON 协议,这意味着您可以使用此类将命令发送到您的 Minecraft 服务器,同时将引擎设置为 Source 引擎。
应用程序ID | 游戏 | 询问 | RCON | 笔记 |
---|---|---|---|---|
~ | 所有 HL1/HL2 游戏和模组 | |||
10 | 反恐精英1.6 | |||
第440章 | 军团要塞2 | |||
550 | 生死存亡2 | |||
第730章 | 反恐精英2 | host_name_store 1; host_info_show 2; host_players_show 2 | ||
1002 | 布娃娃功夫 | |||
2400 | 船 | |||
4000 | 加里的模组 | |||
17710 | 核黎明 | |||
70000 | 恐龙诺曼底登陆日 | |||
107410 | 武装突袭3 | 将+1添加到服务器端口 | ||
115300 | 使命召唤:现代战争 3 | |||
162107 | 死亡保利 | |||
211820 | 星界边境 | 连接后调用SetUseOldGetChallengeMethod 方法 | ||
244850 | 太空工程师 | 将+1添加到服务器端口 | ||
304930 | 未转变者 | 将+1添加到服务器端口 | ||
251570 | 死亡7天 | |||
252490 | 锈 | |||
282440 | 雷神之锤直播 | Quake Live 使用 ZMQ 消息队列协议进行 rcon 控制。 | ||
346110 | 方舟:生存进化 | |||
~ | 我的世界 | |||
108600 | 项目:僵尸 |
如果您知道另一个支持源查询和/或 RCON 协议的游戏,请打开拉取请求。
将您的服务器添加到 Steam 服务器浏览器中的收藏夹中,如果 Steam 可以显示有关您的服务器的信息,则说明该协议受支持。
连接( $Ip, $Port, $Timeout, $Engine ) | 打开与服务器的连接 |
断开连接( ) | 关闭所有打开的连接 |
平() | ping 服务器以查看其是否存在 警告:源引擎可能无法回答此问题 |
获取信息() | 以数组形式返回服务器信息 |
获取玩家( ) | 以数组形式返回服务器上的玩家 |
获取规则( ) | 返回数组中的公共规则(cvar) |
SetRconPassword( $密码 ) | 设置 rcon 密码以便稍后与Rcon()一起使用 |
Rcon( $命令 ) | 在服务器上执行rcon命令 |
另请参阅示例文件夹来解决问题。
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