Hello all, sorry for my english.
How check player build for cs 1.6 with amxx?
I need check player build or version.
Code (exaple, not valid):
Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Check Client Version"
#define VERSION "1.0"
#define AUTHOR "AlexALX"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
register_clcmd("say /version", "cmdversion", -1, "");
}
public cmdversion(id) {
new version, build;
version = ... // how check?
build = ...
client_print( id, print_chat, "You version: %s", version);
client_print( id, print_chat, "You build: %s", build);
}