So ever so often, we may be limited to repeatedly clicking something over and over again to store variables on VCE. I was thinking of a way to make this easier and came up with a way so that values could be entered once. When this event is called, it puts up a handy little GUI that displays the var that is being affected and a handy little text area so you may type in a value (numerical or non-numerical, depending on the event.)
For instance, If I wanted to store 17 Gold in the bank, the events on the bank brick would go:
OnActivate>>Client>>CenterPrint[You have chosen: Deposit]
OnActivate>>Self>>VCEPromptNumeric>>(Drop down menu for Client, Player, Self or Named Brick)[Gold][minValue] [maxValue]*
OnVCEPromptNumeric>>"BankBrick">>VCEModVariable [Gold] Add [17]
OnVCEPromptNumeric>>Player>>VCEModVariable>>[Gold] Subtract [17]
* At this time, the player typed in the amount (17) and clicked the "Send" button to select his deposit amount.
As you can see this could have a variety of applications.