1.:Short question that I couldn't find here on the fomrums or in the manual. Is it possible to find out the length of an array?

GER:
Kurze Frage, kann man die Länge eines Arrays herausfinden?

2.: I just set at the beginning of an action for example "my.skill1 =1;". But If I try top get that value from another entity with the same action it returns only 0.

Example:

Code:
action my_action()
{
 my.skill1 = 1;
 wait(1);
 .....
 c_trace(...);//to another entity with the same action
 if(you.skill1 == 1)
 {
   Do_something;
 }
}



This doesn't work. And a Diag returnes 0 too

I'm sure that I've got the right entity (checked it with dieag too). Is this generally possible or can't I read skills from same-action ents?

Last edited by Nicotin; 07/07/09 19:52.