Workshop.codes
Login
Create
KaBLUey

Advanced Ability Handler

This code is over 6 months old. The code may have expired and might no longer function.

2 Comments

Log in or Sign up to leave a comment.
Takatou almost 4 years ago

"This array can store as many values as you need" unfortunately the Array size is not dynamic its static means it has a maximum capacity of storing excact 1000 elements (at index 999) you won't exceed that limitation, so your table representation of 0 to infinity is misleading and everyone should be aware of. Indeed what you could do in theory (not really practical) though workshop supports slighty a convulent way of using multidimensional Arrays is to store an Array of 1000 elements where each element stores another 1000 elements and so on and store that bulk of data at an index of the main Array. So a single Array is not capable of holding as much as anyone can imagine alone.

KaBLUey#11520 creator almost 4 years ago

I already knew there was a limit to an array's size, but at the time of making this, I forgot that the limit existed in the first place. Should be fixed now.

It's also not like anybody's going to reach that limit so...

Workshop.codes