ARCed.Controls.EventTextBox.Command314 C# (CSharp) Method

Command314() private method

Recover All
private Command314 ( dynamic args ) : void
args dynamic Array of game event parameters
return void
        private void Command314(dynamic args)
        {
            AppendText("@>");
            string text = args[0] == 0 ? "Recover All: Entire Party" :
                String.Format("Recover All: [{0}]", Project.Data.Actors[args[0]]);
            this.AppendText(text, Color.DeepSkyBlue);
        }