I ran into a problem while using the plugin. The plugin command that stores content into a variable works fine, but the issue is that I can’t really make use of that stored variable. For example, copying it to another variable doesn’t work as expected.
After doing some testing in a fresh project, I found that all the code written after the plugin command runs *at the same time*. Normally, when I enter a number or name, the following code runs *after* the input is complete. But in this case, everything runs *simultaneously*.
If I input something in one event and use it in a different event, it works okay. But when multiple things are happening in a single event, it causes real issues. For example, if I enter a password, the calculation that follows doesn’t reflect it. Or if I enter text, the following dialogue doesn’t include it. Adding a 'wait' doesn’t help either.
I did find a temporary workaround by adding a blank, transparent message box to force a pause, but it’s a really clunky solution.
That would honestly make everything perfect if there were a fix for this!