code:
str_cpy(temp_str1,"L Vel: ");
draw_text(temp_str1,400,30,vector(150,75,75));
phent_getvelocity(ball,temp,vector(0,0,0));
temp2 = vec_dist(temp,vector(0,0,0));
str_for_num(temp_str1,temp2);
draw_text(temp_str1,450,30,vector(150,75,75));
The above code is what I'm using... is this correct? temp2 still appears to be affected by the angular velocity of the ball...
Jason