Code:
#include <amxmodx>
public plugin_init() {
register_clcmd("test","test",ADMIN_LEVEL_B,"test")
register_plugin("test", "test", "test");
return PLUGIN_HANDLED;
}
public test(id) {
new getfps[32]
get_user_info(id, "fps_max", getfps, 31)
client_print(id, print_chat, "[AMXX] fps_max: %s", getfps)
}
why i can't get player's fps_max ?
it's show [AMXX] fps_max: in game