GameMaker: Studio

GameMaker: Studio

View Stats:
Adding to arrays, help
for some reason my code keeps adding to the X rather than the arreys value
example ary[X]+=1
Can somone explain to me how to add to the ary's value rather than the X
< >
Showing 1-6 of 6 comments
Fb|| Bonecrusher Nov 12, 2016 @ 8:36pm 
Instead of arrays you could use ds_lists which would allow you to input more than just an x value
BOYCOTT S-T-E-A-M! Nov 13, 2016 @ 12:49am 
You might be having an issue with the fact that Gamemaker has the built-in variable of 'x' for each objects x position.

Why not make your variable you're using for the array be something else?
Like 'ary[index]+=1


Alternatively, what are you storing in that array position? If 'ary[X]' is storing the object 'x' variable then doing +=1 to it would be increasing it.
MrBadWithNames Nov 13, 2016 @ 7:28am 
Originally posted by BOYCOTT S-T-E-A-M!:
You might be having an issue with the fact that Gamemaker has the built-in variable of 'x' for each objects x position.

Why not make your variable you're using for the array be something else?
Like 'ary[index]+=1


Alternatively, what are you storing in that array position? If 'ary[X]' is storing the object 'x' variable then doing +=1 to it would be increasing it.


I only used x as an example, the x is replaced with curr_inv_slot
MrBadWithNames Nov 13, 2016 @ 7:29am 
I'l give it a shot
SquishNoob Nov 13, 2016 @ 10:37am 
add to the arrays value? an array has no value, rather it is an array of values... are you trying to extend the length of the array? or are you trying to move to the next item in the array?
Last edited by SquishNoob; Nov 13, 2016 @ 10:38am
MrBadWithNames Nov 13, 2016 @ 4:22pm 
Originally posted by SquishNoob:
add to the arrays value? an array has no value, rather it is an array of values... are you trying to extend the length of the array? or are you trying to move to the next item in the array?

i have tried an there was a mistake in a different script,it was adding to the X,fixed it now
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Nov 12, 2016 @ 8:33pm
Posts: 6