Yes, it works similarly to a macro/code language. You embed a Lua interpreter (like LuaJIT) into your C++ mod menu, expose your C++ functions (e.g., game hooks, memory edits) to Lua via bindings (like luaL_Reg or libraries like sol2 or luabridge), and then users write Lua scripts that call those...