Oh right! I tried to shorten it too much.
Use the pattern I suggested (^ng(.*)$),
but use this LUA instead:
———————————————————————————–
local maincommand = “neutralize”
if matches[2] then
local maincommand = neutralize .. matches[2]
end
send(maincommand)
———————————————————————————-
I tested this one and it works on my client. It should respond with needing a target if you type ng alone, and if you type ng <target> it’ll replace it.
Hopefully this helps.
– Stacy