| 03-30-2007, 10:51 PM | #1 |
I'm wondering if there is any harm in having unused numbers in an array or if there is harm setting over a couple dozen (Dialog variable) when some one enters a region. Thanks in advance. |
| 03-31-2007, 12:32 AM | #2 |
The impact is in every way negligible. You are free to use very large arrays, but there is a cut-off somewhere in the thousands. |
| 03-31-2007, 01:17 AM | #3 |
Well I think setting the array number is best to set it to your maxium amount such as players i would use 12 -Av3n |
| 03-31-2007, 02:53 AM | #4 |
Unless you have many arrays of high values, where setting them high will actually cause your map to load incorrectly (function op from initialization). Keep in mind that you can use initialized array slots to store data, just be careful not to reference an array before it is initialized as it has been reported to cause problems. Leaving spaces is not a problem either, cause if the array doesn't have a value (isn't initialized) it doesn't take up memory. |
