15.08.2009, 21:43
It's possible to do a new print function in a plugin, using the c printf function, which doesn't happend a newline character to the string. Smething like that should work:
Problem: this basic code will not write into the server_log.txt, it is fixable but 'illegal'..
Код:
static cell AMX_NATIVE_CALL n_print2(AMX *a, cell *p)
{
const char *s;
amx_StrParam(a, p[1], s);
printf(s);
return true;
}

