A lot of people say to use the dynamic cell arrays provided with amxx, but I'm not exactly sure how to use them effectively, because I can't find any tutorials.
For starters, I just want to have an array I can keep putting things in. Can I do this?
PHP Code:
Array:CoolArray=ArrayCreate(1,1)
And then just keep putting them in with
PHP Code:
ArrayPushCell(Array,input)
Edit: So I have it doing what I want it to now, but I still wish there was a tutorial, because I know I'm missing out on a lot of possible functionality with it.
...
If I have an array for each player, will cleararray remove all the cells that pushcell has created, or should I destroy the array and then make a new one on player connection?
__________________