// Text defines, PREFIX is text before and SUFFIX is text after the username in a message.
// Feel free to change these. Also note that ^x01 and ^x04 is color codes.
// Text before the username in amx_chat command
#define AMX_CHAT_PREFIX "^x04"
// Text after the username in amx_chat command
#define AMX_CHAT_SUFFIX " tells admins: "
// Text before the username in a PM that you send
#define AMX_PSAY_SEND_PREFIX "^x04"
// Text after the username in a PM that you send
#define AMX_PSAY_SEND_SUFFIX " PMs you: ^x01"
// Text before the username in the confimation notice of the PM you send
#define AMX_PSAY_BACK_TO_SENDER_PREFIX "^x04You PM "
// Text after the username in the confimation notice of the PM you send
#define AMX_PSAY_BACK_TO_SENDER_SUFFIX ": ^x01"
// Text before the username in the amx_say command
#define AMX_SAY_PREFIX "^x04"
// Text after the username in the amx_say command
#define AMX_SAY_SUFFIX " tells all: ^x01"
// E. g. an amx_chat message with the current settings will be as following example shows
// Command by player with the nick "Martin Van der Cal":
// amx_chat Hello admins
// Shows as:
// Martin Van der Cal tells admins: Hello admins
// Also note that with only the color code in the prefix the whole line will show as green to all admins