FreneticLLC / FreneticScript

The Frenetic Scripting Engine (dll)
MIT License
3 stars 1 forks source link

Switch command #6

Open mcmonkey4eva opened 8 years ago

mcmonkey4eva commented 8 years ago

need a switch-case. Example:

switch <{var[player_name]}>
{
    case bob
    {
        echo "BAWB?!"
    }
    default
    {
        echo "Everything is safe... for now!"
    }
}

or something like that...