Ahh, that's good to know! Time to read up on SimKin arrays then! I have horrible memories of last summer trying to read gigantic files into a perl script array all at once and having the computer lock up. Of course, those text files were over 400mb in size, and I guess an item array, even with a ton of items, won't be more than a few KB!
Well if you can post that RF version that has your new function to stop time please go for it

I would really appreciate it. A brief list of any new things that I can do with it would also be helpful, but not necessary at teh moment, since for now I'll just be using it for the TimeScale command.
EDIT: Hmm, I can't seem to find any array documentation for simkin, as far as commands for getting array size, attaching stuff to either the end or start, and all the other types of useful array functions that you can find in most other scripts. Do those exist? If not it's cool, I can plan around them.
Also, can you do matrices/MultiDimensional Arrays and such so I can have an array of items, and then each member is an array itself with all the item properties? I guess I could set up an array with arrays in it if that's allowed by the language, but then I'm not sure how I would go about referencing individual entries.
EDIT2: After much, much looking on how to do arrays (these docs are either incomplete or I'm too stupid to use them

) I found that I can do soemthing like:
Code: Select all
ITEM0_ARRAY
{
ITEM0_ARRAY1 [value]
ITEM0_ARRAY2 [value]
}
ITEM1_ARRAY
{
ITEM1_ARRAY1 [value]
ITEM1_ARRAY2 [value]
}
And then just reference an entry i, j as ITEM # i # _ARRAY # [j], which is in essence a multidimensional array. If there's a more direct way of doing it I'd appreciate it if someone would let me know

I haven't tried the above yet so I'm going to give it a try, I think it should work though!
I also read about flipbook but it seems you have to add that entity to each level if I understand it correctly. I'll probably forget to do that, so instead I opted for the SetHudDraw(false) command, which I just found, and works nicely
And one more question. I'm trying to use the following image as a menu cursor, but when I save it as a PNG the colors are all broken when I load it as a HudPicture and the transparency isn't working right. I'm not sure what the deal is, but using gif lowers the quality to unacceptable levels. I'm currently using jpg + alpha map but it's tough to get the alpha map to be precise when the transparancy transition is gradual. I got it pretty good, but it's not 100% perfect, so if there's something I can do with the .png file please let me know