(Formerly known as global function GetMessageText, which is now obsolete)
readonly static String Game.GlobalMessages[int message]
Gets the text of the specified global message. The message number is one of the global
message numbers from 500 to 999.
If an invalid message number is supplied, null will be returned. Otherwise, the
message contents will be returned.
Example:
String message = Game.GlobalMessages[997];
Display("Global message 997 says: %s", message);
will display global message 997.
|