forked from pa1n-dev/nixware_x64
-
Notifications
You must be signed in to change notification settings - Fork 0
API functions
Nazar edited this page Apr 19, 2026
·
5 revisions
Note
It's important to understand that all calls to the functions provided here go through the nixware table.
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)