<After CTB Eval>
var temp = ( Math.randomInt(400) - 100 + user.luk - target.luk ) / 3;
if (temp < -33) temp = -33;
if (temp == 0) temp = 1;
if (temp > 33) temp = 33;
var temp2 = 5 - 5 * user.agi / 600 - 5 * temp / 100;
var tempmin = 5 * 2 / 3;
var tempmax = 5 * 4 / 3;
if (temp2 < tempmin) temp2 = tempmin;
if (temp2 > tempmax) temp2 = tempmax;
speed = - (temp2);
</After CTB Eval>