author | sheepluva |
Tue, 02 Dec 2014 22:11:22 +0100 | |
changeset 10609 | 15f2908113a1 |
parent 10604 | f2f9928ea2e7 |
child 10611 | 58cad46782ff |
permissions | -rw-r--r-- |
HedgewarsScriptLoad("/Scripts/Draw.lua") function onPreviewInit() onGameInit() end function onGameInit() MapGen = mgDrawn TemplateFilter = 0 for y = 48,2048,200 do for x = 48,4048,200 do if GetRandom(2) == 0 then AddPoint(x,y,1) AddPoint(x+200,y+200) else AddPoint(x,y+200,1) AddPoint(x+200,y) end end end FlushPoints() end