x = 2048 y = 1024 -- next step, try some of the transformations on -- http://to-campos.planetaclix.pt/fractal/graftale.html -- see if various neat ferns can be generated function onGameInit() MapGen = mgDrawn TemplateFilter = 0 for i = 1,10000 do r = GetRandom(3) if r == 0 then x = div(x,2) y = div(y,2) elseif r == 1 then x = div(x,2) y = 2048-div(2048-y,2) elseif r == 2 then x = 4096-div(4096-x,2) y = 1024-div(1024-y,2) end AddPoint(x,y,0) end FlushPoints() end function onPreviewInit() onGameInit() end