Skip to content
Greenman edited this page Jan 20, 2020 · 1 revision

Documentation

boolean tools(<Player> p)

Description

Returns true if player p has tools; otherwise, false is returned.

Example

--Note: This is just a snippet
["Function"] = function(args,speaker) 
  if tools(args[1]) then
    notify("Info",args[1].." has tools!")
  end
end