-
-
Notifications
You must be signed in to change notification settings - Fork 5
UserVars
Anthony Headley edited this page Nov 27, 2020
·
6 revisions
None
object: UserVars Object
local userVar = UserVars() --grab the user var object to be used in Set/Get/Delete operations`
local setSuccess = SetVar(userVar, "COUNTER", 42)`
local result = GetVar(userVar, "COUNTER") -- result = 42`
local delSuccess = DelVar(userVar, "COUNTER") `