What do you mean by attach - doesn't attach the action or
doesn't attach the camera.. Please be more specific..
try this minimap for lite-c - untested
//minimap from aum 27
VIEW* top_view
{
layer = 15;
pos_x = 0; // appears in the upper left corner of the screen
pos_y = 0;
size_x = 200;
size_y = 150;
tilt = -90;
arc = 80; // zoom factor
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
init_topcam_startup()
{
while (player == null) {wait (1);}
while (1)
{
if (key_t == 1)
{
while(key_t == 1) {wait(1);}
if is(top_view,VISIBLE)
{
reset(top_view,VISIBLE);
}
else
{
set(top_view,VISIBLE);
}
}
top_view.x = player.x;
top_view.y = player.y;
top_view.z = 1000; // play with this value
wait (1);
}
}
If you have any other problems do the tutorials read the manual and
have a look at resources, wiki, aum etc..
Good luck..