Raising the limit of global variables! #2063
Kiwi1444
started this conversation in
Feature Request
Replies: 1 comment 3 replies
-
We already have billions of maps. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
Despite the fact that there is no problems with global limit of helpers on the screen in Ikemen Go and you can overcome limitations in 65 integer variables and 45 float variables by setting varibles inside the helper, this approach has several drawbacks. Three of them cannot be technically fixed due to compatibility issues with Mugen.
Helpers have delay relative root for 1 tick. What is essential when we talk about artificial intelligence where every single tick is important for quick reaction
All helpers are destroyed at the end of the round. This leads to erasing all values that were assigned to the variables. This is not suitable for long-term storage of information
A more complex trigger to access such "external" variables. For example:
Numhelper(helper ID) && helper(helper ID),var(var number)
vsvar(var number)
It is impossible to use the new states: -4 and +1 for "external" variables.
Describe the solution you'd like
My character uses 6 additional helpers for storage "external" variables. Increasing the variable limit to 500 integer and 500 float will be enough to start with. And in the future we can remove the limit altogether.
Additional context
No response
Search terms
variables. variable
Beta Was this translation helpful? Give feedback.
All reactions