Functions
messages.inc
| Function | Type | Description |
|---|---|---|
| emessage_begin | native | Marks the beginning of a client message. |
| emessage_begin_f | native | Marks the beginning of a client message. |
| emessage_end | native | Ends a message that was started with emessage_begin() or emessage_begin_f(). |
| ewrite_angle | native | Writes an angle entry to a message. |
| ewrite_angle_f | native | Writes an angle entry to a message using a float value. |
| ewrite_byte | native | Writes a single byte to a message. |
| ewrite_char | native | Writes a single character to a message. |
| ewrite_coord | native | Writes a coordinate entry to a message. |
| ewrite_coord_f | native | Writes a coordinate entry to a message using a float value. |
| ewrite_entity | native | Writes an entity index to a message. |
| ewrite_long | native | Writes a single number to a message (long). |
| ewrite_short | native | Writes a single number to a message (short). |
| ewrite_string | native | Writes a string to a message. |
| get_msg_arg_float | native | Gets the float value of a specified argument. |
| get_msg_arg_int | native | Gets the integer value of a specified argument. |
| get_msg_arg_string | native | Gets the string value from a specified argument. |
| get_msg_args | native | Gets number of arguments that were passed to a message. |
| get_msg_argtype | native | Gets the argument type of a specified argument. |
| get_msg_block | native | Gets whether or not an engine message is blocked. |
| get_msg_origin | native | Gets the origin of a message. |
| message_begin | native | Marks the beginning of a client message. |
| message_begin_f | native | Marks the beginning of a client message. |
| message_end | native | Ends a message that was started with message_begin() or message_begin_f(). |
| register_message | native | Lets you directly hook a message in the engine. |
| set_msg_arg_float | native | Sets the float value of a specified argument. |
| set_msg_arg_int | native | Sets the integer value of a specified argument. |
| set_msg_arg_string | native | Sets the string value of a specified argument. |
| set_msg_block | native | Sets whether or not an engine message will be blocked. |
| unregister_message | native | Unregisters a message hook previously created with register_message(). |
| write_angle | native | Writes an angle entry to a message. |
| write_angle_f | native | Writes an angle entry to a message using a float value. |
| write_byte | native | Writes a single byte to a message. |
| write_char | native | Writes a single character to a message. |
| write_coord | native | Writes a coordinate entry to a message. |
| write_coord_f | native | Writes a coordinate entry to a message using a float value. |
| write_entity | native | Writes an entity index to a message. |
| write_long | native | Writes a single number to a message (long). |
| write_short | native | Writes a single number to a message (short). |
| write_string | native | Writes a string to a message. |