you can just define 3 local variables inside the entity's action...

int my_x = 0;
int my_y = 0;
int my_z = 0;

But remember these are only available to this action, and statements inside this action. You cant set something like "my_x = 10;" from another function because these are local variables. For things like that, lookup pointers.

If you want to learn more about storing a collection of variables, or creating custom data sets then lookup structs in the manual.

Last edited by DJBMASTER; 01/04/09 03:00.