Skip to content

API functions

Nazar edited this page Apr 19, 2026 · 5 revisions

API functions

Note

It's important to understand that all calls to the functions provided here go through the nixware table.

nixware.klog(string message)

sends a message to Logs (Misc -> Globals -> Logs)

Example:

hook.Add("OnPlayerChat","Checksay",function(ply,text,public)
	if(string.lower( text ) == "hello") then
		nixware.klog(ply:Nick() .. " said hello")
	end
end)

Clone this wiki locally