query_return("SELECT * FROM " . TB_PREFIX . "wdata LIMIT 1"); if (count($data_exist)) { header("Location: ../index.php?s=3&err=1"); exit; } $xyas=(1+(2*WORLD_MAX)); $values_batch = []; $max_batch_size = 10000; for($i=0; $i<$xyas; $i++){ $y=(WORLD_MAX-$i); for($j=0; $j<$xyas; $j++){ $x=((WORLD_MAX*-1)+$j); //choose a field type if(($x == 0 & $y == 0) || ($x == WORLD_MAX & $y == WORLD_MAX)) { $typ='3'; $otype='0'; }else{ $rand=rand(1, 1000); if("10" >= $rand){ $typ='1'; $otype='0'; } else if("90" >= $rand){ $typ='2'; $otype='0'; } else if("400" >= $rand){ $typ='3'; $otype='0'; } else if("480" >= $rand){ $typ='4'; $otype='0'; } else if("560" >= $rand){ $typ='5'; $otype='0'; } else if("570" >= $rand){ $typ='6'; $otype='0'; } else if("600" >= $rand){ $typ='7'; $otype='0'; } else if("630" >= $rand){ $typ='8'; $otype='0'; } else if("660" >= $rand){ $typ='9'; $otype='0'; } else if("740" >= $rand){ $typ='10'; $otype='0'; } else if("820" >= $rand){ $typ='11'; $otype='0'; } else if("900" >= $rand){ $typ='12'; $otype='0'; } else if("908" >= $rand){ $typ='0'; $otype='1'; } else if("916" >= $rand){ $typ='0'; $otype='2'; } else if("924" >= $rand){ $typ='0'; $otype='3'; } else if("932" >= $rand){ $typ='0'; $otype='4'; } else if("940" >= $rand){ $typ='0'; $otype='5'; } else if("948" >= $rand){ $typ='0'; $otype='6'; } else if("956" >= $rand){ $typ='0'; $otype='7'; } else if("964" >= $rand){ $typ='0'; $otype='8'; } else if("972" >= $rand){ $typ='0'; $otype='9'; } else if("980" >= $rand){ $typ='0'; $otype='10'; } else if("988" >= $rand){ $typ='0'; $otype='11'; } else { $typ='0'; $otype='12'; } } //image pick if($otype=='0'){ $image="t".rand(0,9).""; } else { $image="o".$otype.""; } //into database $values_batch[] = "(0,'".$typ."','".$otype."','".$x."','".$y."',0,'".$image."')"; // insert the full batch when threshold is reached if (count($values_batch) === $max_batch_size) { $q = "INSERT into ".TB_PREFIX."wdata VALUES ".implode(',', $values_batch); $database->query($q); $values_batch = []; } } } // last batch may not be as big as $max_batch_size if (count($values_batch)) { $q = "INSERT into ".TB_PREFIX."wdata VALUES ".implode(',', $values_batch); $database->query($q); $values_batch = []; } header("Location: ../index.php?s=4"); ?>