Hello;
I´m translating a large old .wdl script into Lite-C, and runned into a problem.
I declared a variable vector using "x", but the new syntax doesn´t recognize it, and i didn´t found no reference of such matter anywhere in the manual.

Code:
var Shield_maker[3];

function...
{
 ...
   vec_for_vertex(Shield_maker.x,player_A,1186);
   ent_create(shield1_mdl,Shield_maker.x,PLAYERSHIELD_A);
   PLAYERSHIELD_A.scale_x=0.40;
   PLAYERSHIELD_A.scale_y=0.40;
 ...


It gives the following error:

Error in ´actions.c´ line 588;
´x´: is not a member of ´function´
< vec_for_vertex(excudo_cria.x,jogador_A,1186);
>

The index searches ´vector_for_vertex´, ´x´, ´vector´, ´variables´, etc, in the manual help produces no results towards the matter.
Any help is appreciated, thanks in advance.