Ok Imma get my hands dirty, I can't stand watching you while the other nabs ignore u (
So first of all, setd,getd doesn't construct an array for you, and you can't ( thats why your getarraysize failed here )
what happens in setd,getd is you basically modify the variable names as "strings", basically the "address" of your variables,
the reason why many suggest to use this instead, is because you can simulate array out of it e.g ".x1, .x2, .x3"
for(set .idx,0; .idx< 256; set .idx,.idx+1)
{
setd ".npcVarArray"+.idx,<somevalue>;
}
here we create 256 variables not a single array, e.g .npcVarArray0,..... .npcVarArray255
but this is very different from an array, they are basically different individuals(variables) but you just know how to refence them by index "simulating arrays" because of the way you named them
now if we would like to get the values we can simply ,
for(set .idx,0; .idx< 256; set .idx,.idx+1)
{
mes getd( ".npcVarArray"+.idx);
}
it is obvious that you will not be able to use [] heres (only the core source gods can confirm this) maybe because parser treats this as real arrays ( NOT REALLY SURE GOD DAMN IT XD)
so here in your example :
GetArraySize(getd("$Events"));
you are not accessing the entire array we just created, you are accessing a single element $Events variable nothing else,
there is obviously no way to track the count of our variables now
but we can now simulate somewhat "object" mindset here
we can do
push_array(arraysource,valueTopush);
internally we can do something like
setd ($arraySourceName+"Count"), ($arraySourceName+"Count") + 1; // this will increase our setd collection count
setd ($arraySourceName+getd(arraySourceName+Count)),value); // we set the value being held in this index
we can now do
array_count("arrayNamehere");
return getd($arraySourceName+"Count");
and can do the rest like
pop_array()
set .tempResult = getd( ($arraySourceName+getd(arraySourceName+Count)));
setd ($arraySourceName+"Count"), ($arraySourceName+"Count") - 1; // this will decrease our setd collection count
setd ($arraySourceName+getd(arraySourceName+Count)), <null / 0 / empty string >); // we set the value being held in this index to empty or something else that means nothing
return .tempResult;
and what else you can do with that
we can even simulate a Hashtable or Dictionary here but that will get more complicated and slow ROFL
Thank you very much