hello, how to store an some info, maybe text or numbers with spaces, in my entity what i created, its just info_target, ye i dont want use global variables, so for example i can store info at one place, and get it in other.
EDIT: oh i found way it was pev_message
PHP Code:
set_pev(entity, pev_message, "hello_from_xpaw");
// [ ... ]
new szInfo[46];
pev(entity, pev_message, szInfo, 45);
client_print(0, print_chat, "%s", szInfo);
__________________