I Have been using the following code to randomly generate tornadoes on my map:

Quote:
var count = 1;
while(count<(random(10))){
ent_create("tornado.mdl",vector(random(20000),random(20000),0),tornado);
count = count + 1;
}


The problem is that they are in the same place each time? What am I doing wrong?