How can I have the usn of the person who kicks a player appear in print?
Line 6 of the code (Hc / admin scrip)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
function hc.moderation.kick(p, _, item) local id = item.id local name = player(id, "name") 	local usgn = hc.get_usgn(id) 	local m = "#" .. id .. ": " .. name 	hc.event(hc.WHITE .. m .. " kick by" .. ??????????) 	 if hc.check_exists(id) then hc.moderation.kill_if_flag_bearer(id) hc.exec(p, "kick " .. id) end end