Quote:
Originally Posted by Brad
Just saying but... "Array" is a *terrible* variable name. A variable name should describe what the contents are that it holds.
|
Well, it is describing the contents, kinda.
Code:
awTest()
{
new Array = array_create();
array_set_int(g_MainArray,++g_Items,Array);
array_set_string(Array,1,"Hello World");
}
RegisterItems()
{
new Array[2]
Array[0] = ItemID
Array[1] = id
_RegisterItem("Test Item","N/A",Array);
}
Things liek diiisss
__________________