Command Output Event

This event is called whenever a command wants to send feedback to the user.

Command class

The Command class has a built in method to call this event.

Calling

This event takes two Strings: the name of the command, and the message.

string message = "music paused.";
CommandOutputEvent.Call("LyokoDJ",message);

The game will display it like this: [LyokoDJ] music paused.

Listening

Only application devs should listen to this event.

Last updated

Was this helpful?