anyone know why i can't add ^n like this:
PHP Code:
#include <amxmodx>
#define TIME_DELAY 100.0
#define TEXT_SAY "[AMX] Version 1.8.1, Zombie Plague Version 4.3. ^n Enjoy Your Stay."
public plugin_init()
{
register_plugin("Information","1.0","Mr.Noobie")
set_task(TIME_DELAY, "Information", 0, _, _, "b")
}
public Information()
{
client_print(0, print_chat, TEXT_SAY)
}
In the gameplay the TEXT_SAY show this :
Code:
[AMX] Version 1.8.1, Zombie Plague Version 4.3. Enjoy Your Stay.
I want it like this :
Code:
[AMX] Version 1.8.1, Zombie Plague Version 4.3.
Enjoy Your Stay.