Craig_Sutter Deity Joined Aug 13, 2002 Messages 2,773 Location Calgary, Canada Apr 24, 2017 #1 As per the thread title... I could do this with civ 5 world builder. How do I do it with Civ 6.
CivilizationAce Warlord Joined Jan 17, 2017 Messages 240 Apr 24, 2017 #2 Excerpt from WorldBuilderMap.sql: Code: CREATE TABLE "Map" ( "ID" TEXT NOT NULL, "Width" INTEGER, "Height" INTEGER, "TopLatitude" INTEGER, "BottomLatitude" INTEGER, "WrapX" BOOLEAN, "WrapY" BOOLEAN, "MapSizeType" TEXT, PRIMARY KEY(ID)); That's the only clue I could find. However I'm not sure at what point altering any row in this table would work, or even if it would at all.
Excerpt from WorldBuilderMap.sql: Code: CREATE TABLE "Map" ( "ID" TEXT NOT NULL, "Width" INTEGER, "Height" INTEGER, "TopLatitude" INTEGER, "BottomLatitude" INTEGER, "WrapX" BOOLEAN, "WrapY" BOOLEAN, "MapSizeType" TEXT, PRIMARY KEY(ID)); That's the only clue I could find. However I'm not sure at what point altering any row in this table would work, or even if it would at all.
Craig_Sutter Deity Joined Aug 13, 2002 Messages 2,773 Location Calgary, Canada Apr 24, 2017 #3 Maybe this XML? I haven't ideas for some or the items, though. Code: <Map> <Row> "ID"=MYMAPNAME Width="135" Height="81" TopLatitude= BottomLatitude= WrapX=false WrapY=false MapSizeType="MAPSIZE_NWE" PRIMARY KEY(ID) </Row> </Map> Unsure of ID and PRIMARY KEY(ID). Also, the latitudes... Think I need to update database after???
Maybe this XML? I haven't ideas for some or the items, though. Code: <Map> <Row> "ID"=MYMAPNAME Width="135" Height="81" TopLatitude= BottomLatitude= WrapX=false WrapY=false MapSizeType="MAPSIZE_NWE" PRIMARY KEY(ID) </Row> </Map> Unsure of ID and PRIMARY KEY(ID). Also, the latitudes... Think I need to update database after???