PHP Code:
public SlowVelocity( id ) {
if( g_bSlowMotion[ id ] ) {
new Float:vVelocity[ 3 ];
entity_get_vector( id, EV_VEC_velocity, vVelocity );
vVelocity[ 0 ] /= 3.0;
vVelocity[ 1 ] /= 3.0;
vVelocity[ 2 ] /= 2.0;
entity_set_vector( id, EV_VEC_velocity, vVelocity );
}
}
I think it wont make sense, but worth trying.
EDIT: Add
FL_CONVEYOR | FL_FLOAT
__________________