#--------------------------------------------- # Start state #--------------------------------------------- state Base { Conditions { if LevelValue "Stat" != 0 goto Activate } Actions { Disable } } #--------------------------------------------- # Activates the character & chooses the state #--------------------------------------------- state Activate { Conditions { if LevelValue "Stat" == 0 goto Base } Actions { Enable } }