How do i make a GUI interact with the server?

Author Topic: How do i make a GUI interact with the server?  (Read 1736 times)

I want to know how to make a GUI interact with the server further more hiding nodes, and displaying variables on the GUI.

Servers and clients interacting through mods happens through ServerCmd and ClientCmds.
They work as follows:
Client calls commandToServer('command',arg1,arg2,...);
Server receives this command, and then calls ServerCmdcommand(client,arg1,arg2,...)
Then for the other way around
Server calls commandToClient(client,'command',arg1,arg2,...);
The client receives this command, and then calls ClientCmdcommand(arg1,arg2,...)