Hi,
I'm playing with the new version of Combu and was wondering if there is anyway to perform admin commands in-game.
For example; examine user's messages, view/alter their inventory items, change custom values or ban users. I'm trying to find a way to effectively give certain users GM-style authority.
The Web-admin panel is good, but I see no way to look at user messages or inventory, this would be useful especially in cases of griefing.
Any help would be appreciated.
There's no such method in the client API, anyway they would be useful most likely in a real-time multiplayer but in that environment you could already implement yourself by sending serialized network messages from the selected player with the query values (only thing I find useful for a GM regarding players is to investigate their inventory, which can be achieved as said above).
The ban implementation is quite easy, just use a bool customData "banned" in your custom user class and check it back in your Authenticate callback.
FRANCESCO CROCETTI @ SKARED CREATIONS
Fair enough,
Thanks for the answer