Mob ConColor String

Valerian

ISX Specialist
without setting up a string?
um. HUH? Why would you set up a string?

Code:
if ${Target.ConColor.Equal[Yellow]}
{
     do stuff
}
or

Code:
switch ${Target.ConColor}
{
case Red
case Orange
case Yellow
     do stuff
     break
case White
case Blue
case Green
     do other stuff
     break
case Grey
     more stuff
     break
default
     can do stuff here too
}
 
Top Bottom