I have a similar problem with the skills not showing up in one of the functions, this is puzzleing because it shows up in each action before it, (yes I reloaded the level, and no it didn't work) so after tweaking with it for a bit I was wondering if anyone could tell me what's up this is the Code:
 DEFINE	_radius, SKILL1;
DEFINE _height_length, SKILL2;
DEFINE _base_length_x, SKILL3;
DEFINE _base_length_y, SKILL4;

// use: _radius, _height_length
action spawn_cylinder
{
temp_creation = cylinder();
spawn(temp_creation);
}

// use: _radius
action spawn_circle_half
{
temp_creation = circle_half();
spawn(temp_creation);
}

// use: _radius
action spawn_circle_full
{
temp_creation = circle_full();
spawn(temp_creation);
}

// use: _radius
action spawn_circle_plane
{
temp_creation = circle_plane();
spawn(temp_creation);
}

// use: _height_length, _base_length_x, _base_length_y
action spawn_square_full
{
temp_creation = square_full();
spawn(temp_creation);
}

//below is the code that isn't showing its "_base_length_x, _base_length_y" in WED

// use: _base_length_x, _base_length_y
action spawn_square_plane
{
temp_creation = square_plane();
spawn(temp_creation);
}

//to make the use on action spawn_square_plane work, this is here


All the other actions show their actions in WED (the ones not in red)

P.S. Without the last comment on the code, it did not show the the use: command, the code above now works perfectly

Last edited by Trooper119; 04/17/06 16:29.