Thread: Need help
View Single Post
01-14-13, 06:45 PM   #12
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
These two lines are functionally identical:

Code:
local value = IsResting() and 1 or 0
Code:
local value
if IsResting() then
    value = 1
else
    value = 0
end
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote