ActionScript Random-Function Random

function random(LB:int, UB:int):int
{
return (int(Math.random()*((UB-LB) + 1)+LB));
}
Kridyplays