Contains the name of the proxy to which the server belongs
+.. js:attribute:: ServerEvent.proxy_uuid
+
+ Contains the uuid of the proxy to which the server belongs
+
.. js:attribute:: ServerEvent.reference
Reference to the live server (A :ref:`server_class`).
lua_pushstring(hlua->T, "proxy_name");
lua_pushstring(hlua->T, e_server->safe.proxy_name);
lua_settable(hlua->T, -3);
+ /* Add server proxy uuid */
+ lua_pushstring(hlua->T, "proxy_uuid");
+ lua_pushinteger(hlua->T, e_server->safe.proxy_uuid);
+ lua_settable(hlua->T, -3);
/* attempt to provide reference server object
* (if it wasn't removed yet, SERVER_DEL will never succeed here)