Type String Revision 2017.3060 Keywords steam, steamworks, getUserInfo, UserInfo, status See also steamworks.getUserInfo() steamworks.*
A string indicating a user's current online status. This is a setting that a user can set under the Steam client's Friends menu.
This will be one of the following strings:
"away"
"busy"
"lookingToPlay"
"lookingToTrade"
"offline"
"online"
"snooze"
"unknown"
local steamworks = require( "plugin.steamworks" ) -- Print the currently logged in user's current online status local userInfo = steamworks.getUserInfo() if ( userInfo ) then print( "User Status: " .. userInfo.status ) end