diff --git a/bot/scrcustom.cpp b/bot/scrcustom.cpp index 046a72e..3dddc88 100644 --- a/bot/scrcustom.cpp +++ b/bot/scrcustom.cpp @@ -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; }