-
-
Notifications
You must be signed in to change notification settings - Fork 5
DelVar
Anthony Headley edited this page Apr 19, 2020
·
2 revisions
| Name | Description | Optional |
|---|---|---|
| object:Variables | A referance to Variables Object. e.g. GlobalVars(), PluginVars(), AddonVars(), UserVars() | |
| string: Variable Name | The name of the variable |
bool: success
local userVar = UserVars()
local setSuccess = SetVar(userVar, "COUNTER", 42)
local result = GetVar(userVar, "COUNTER") -- result = 42
local delSuccess = DelVar(userVar, "COUNTER")