you can have an action which targets another action
#define points skill41
action all_enemy(){
while(me){
//do your thing
wait(1);
}
}
action enemy10(){
my.points = 10;
all_enemy();
}
action enemy50(){
my.points = 50;
all_enemy();
}
then simply add the targets.points to the score, and assign these in wed as necessary
hope this helps
btw, try naming your forum topics something similar to the problem