I am trying to control the "state" parameter in a_jump function via ACS:
Something like this:
DECORATE:
Code: Select all
NULL A 0 A_Jump(256, callacs("GetStateName"))
Code: Select all
script "GetStateName" (void)
{
int Result = "Ready";
SetResultValue(Result);
}