internal ScriptActionControlSetProperty(MudData.FormulaActionSetProperty action)
        {
            InitializeComponent();

            PropertyComboBox.Text = action.property;
            FormulaTextBox.Text   = action.value;
            ObjectComboBox.Text   = action.target;
        }
        internal MudData.FormulaActionSetProperty GenerateMudDataAction()
        {
            var ret = new MudData.FormulaActionSetProperty();
            ret.action = "SetProperty";
            ret.property = PropertyComboBox.Text;
            ret.value = FormulaTextBox.Text;
            ret.target = ObjectComboBox.Text;

            return ret;
        }
        internal MudData.FormulaActionSetProperty GenerateMudDataAction()
        {
            var ret = new MudData.FormulaActionSetProperty();

            ret.action   = "SetProperty";
            ret.property = PropertyComboBox.Text;
            ret.value    = FormulaTextBox.Text;
            ret.target   = ObjectComboBox.Text;

            return(ret);
        }
        private MudData.FormulaAction GetRawActionFromDropdownSelection()
        {
            MudData.FormulaAction action = null;

            if (ActionComboBox.Text == "AddToList")
            {
                action = new MudData.FormulaActionAddToList();
            }
            else if (ActionComboBox.Text == "CreateListMember")
            {
                action = new MudData.FormulaActionCreateListMember();
            }
            else if (ActionComboBox.Text == "foreach")
            {
                action = new MudData.FormulaActionForEach();
            }
            else if (ActionComboBox.Text == "if")
            {
                action = new MudData.FormulaActionIf();
            }
            else if (ActionComboBox.Text == "ListTransfer")
            {
                action = new MudData.FormulaActionListTransfer();
            }
            else if (ActionComboBox.Text == "ListRemove")
            {
                action = new MudData.FormulaActionListRemove();
            }
            else if (ActionComboBox.Text == "RepeatEvent")
            {
                action = new MudData.FormulaActionRepeatEvent();
            }
            else if (ActionComboBox.Text == "SetGoalState")
            {
                action = new MudData.FormulaActionSetGoalState();
            }
            else if (ActionComboBox.Text == "SetProperty")
            {
                action = new MudData.FormulaActionSetProperty();
            }
            else if (ActionComboBox.Text == "TriggerEvent")
            {
                action = new MudData.FormulaActionTriggerEvent();
            }
            else
            {
                action = new MudData.FormulaAction();
            }

            return action;
        }