thanks all

I got the vertex numbers for the top and bottom of the cane
top 528.5 16.2 452.9
bottom 518.5 16.2 332.9

Now I am kinda a noob with scripting I know very little.

so do I make like a variable for the vertexes ?
and what should I put in the action snake and action player ?

action snake
{
my.skill55=1234;
//rest of the code
}

action player move
{
if(key_ctrl)
{
whack_percent=(whack_percent+5*time)%100;
ent_animate(me,"whack",whack_percent,ANM_CYCLE);
my.enable_impact=on;
my.enable_entity=on; (if(you !=null))
if(you.skill55==1234
{
ent_remove(you)
}
}
}

Is it something like this although I doubt it.
I am sorry I am just not to skill with c.
and how would I implement the c_trace ?

Last edited by tek; 07/23/06 22:46.