operators.getName
Description
Get an operator name from an their operator ID

Parameters
operatorID number

Return value
operatorName string

Example
local operatorID = 1
local operatorName = operators.getName(operatorID)
print("Operator " .. operatorID .. " name is " .. operatorName)

Comments
Use operators.getCurrentOperatorName to get the name of the current operators.

See also
operators.getCurrentOperatorName

Back