View Single Post
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 07-09-2023 , 19:35   Re: Slide/Push Array/CellArray
Reply With Quote #3

With the cell arrays (dynamic arrays), you can simply use the features provided with them:

PHP Code:
public ArrayPush(Array:array, number)
{
    
ArrayPushCell(array, number)
    if( 
ArraySize(array) > MAX_ARRAY_SIZE )
    {
        
ArrayDeleteItem(array, 0)
    }

No need to do all that extra work when it's already built in.
__________________
fysiks is offline