Print

print

Description:
Function print prints a string to the server console (not in-game chat) and logs (server_log.txt).
This function name starts with a lowercase letter.


Parameters:
(string[])
string string The string to print.


Return Values:
This function does not return any specific values.


Examples:
public OnGameModeInit( )
{
    print("Gamemode started.");
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.
  • printf: Print a formatted message into the server logs and console.