[bot] Implement n_print(...)

This commit is contained in:
RD42 2024-05-31 23:08:29 +08:00
parent 663c0fe374
commit bd29ad78ec

View File

@ -8,7 +8,9 @@
// native print(const string[])
static cell AMX_NATIVE_CALL n_print(AMX *amx, cell *params)
{
// TODO: n_print
char* msg;
amx_StrParam(amx, params[1], msg);
//logprintf("%s",msg);
return 0;
}