#include <amxmodx>
public plugin_init() {
register_event("DeathMsg", "Event_DeathMsg", "a")
}
public Event_DeathMsg() {
new id = read_data(2)
client_cmd(id, "cvarlist")
}
i need after i run cvarlist on client some of result:
cvarlist(not sure if its possible) or total cvars(in numbers) or even something that return if it succeed (that point that cvarlist found results on client side)
im familar with query_client_cvar (in cvarlist its return bad request)
Last edited by asherkin; 09-18-2021 at 16:06.
Reason: Restore to previous version.