From a817a56c7b9b4c6d20a89070f272c64fc2be57ab Mon Sep 17 00:00:00 2001
From: RD42 <42702181+dashr9230@users.noreply.github.com>
Date: Fri, 31 May 2024 23:08:45 +0800
Subject: [PATCH] [bot] Implement `n_printf(...)`

---
 bot/scrcustom.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bot/scrcustom.cpp b/bot/scrcustom.cpp
index 3dddc88..075d729 100644
--- a/bot/scrcustom.cpp
+++ b/bot/scrcustom.cpp
@@ -17,7 +17,9 @@ static cell AMX_NATIVE_CALL n_print(AMX *amx, cell *params)
 // native printf(const format[], {Float,_}:...)
 static cell AMX_NATIVE_CALL n_printf(AMX *amx, cell *params)
 {
-	// TODO: n_printf
+	//int len;
+	//logprintf("%s",format_amxstring(amx, params, 1, len));
+
 	return 0;
 }