Originally Posted by FAME
Does anyone know if there is a new equivalent to IsLessEqual() yet?
|
I think you can solve this with an "if" structure combined with the >= operand. Like for instance:
[if MissingMP >= 2200 then
(if MissingMP >= 3200 then
"FelMana"
else
"ManaPot"
end)
end]
In this case, it should return "FelMana" for less then or equal to 3200 mana and "ManaPot" for less then or equal to 2200 mana.