ORIGINAL: AdamRinkleff
I there any way to make a map bigger than 200 hexes?
I'm sure there is a command that allows rows and columns to be added.
What I'd like to know is whether it is possible to "glue" two maps together.
Moderator: Vic
ORIGINAL: AdamRinkleff
I there any way to make a map bigger than 200 hexes?
ORIGINAL: CSO_Talorgan
ORIGINAL: AdamRinkleff
I there any way to make a map bigger than 200 hexes?
I'm sure there is a command that allows rows and columns to be added.
What I'd like to know is whether it is possible to "glue" two maps together.
ORIGINAL: bwheatley
ORIGINAL: Kraftwerk
Hey if you figure that one out, copyright that idea, because if ive noticed anything in grand strategy games that encompass the whole world, its that theres no concensus on how to do that correctly. Some of the maps people have come up with have blown my mind thinking, how in the hell did they think thats what the world looks like?!
You could retire to the Camans...
Agreed it's a difficult issue to solve.Maybe i'll just cut those 3 countries out..who needs them.
just kidding.
ORIGINAL: redmarkus4
ORIGINAL: bwheatley
ORIGINAL: Kraftwerk
Hey if you figure that one out, copyright that idea, because if ive noticed anything in grand strategy games that encompass the whole world, its that theres no concensus on how to do that correctly. Some of the maps people have come up with have blown my mind thinking, how in the hell did they think thats what the world looks like?!
You could retire to the Camans...
Agreed it's a difficult issue to solve.Maybe i'll just cut those 3 countries out..who needs them.
just kidding.
Hey - my wife is Swedish!
ORIGINAL: bwheatley
Some more sftypes so far.
ORIGINAL: Jeffrey H.
Nice ! Great Style.
ORIGINAL: Josh
I especially like the map, it has a nice "feel".
zone 1 - UK
zone 2 - Northern Europe
zone 3 - Norway/Finland/etc
zone 4 - Southern Europe
zone 5 - Spain/Italy/Balkans
zone 6 - Northern USSR
zone 7 - Southern USSR
zone 8 - Africa
Weather Types
0 - Clear
1 - Mud
2 - Snow
3 - Blizzard
0) ' This function opens the appriopriate weather list
1) SETVAR: TempVar901 = CheckRandomRowStringList(TempVar900, 0)
2) SETVAR: TempVar901 = CheckStringList(TempVar900, TempVar901, 1)
3) ' Weather For Zone 2
4) SETVAR: TempVar902 = CheckRandomRowStringList(TempVar900, 1)
5) SETVAR: TempVar902 = CheckStringList(TempVar900, TempVar902, 2)
6) ' Weather For Zone 2
7) SETVAR: TempVar903 = CheckRandomRowStringList(TempVar900, 2)
8) SETVAR: TempVar903 = CheckStringList(TempVar900, TempVar903, 3)
9) ' Weather For Zone 2
10) SETVAR: TempVar904 = CheckRandomRowStringList(TempVar900, 3)
11) SETVAR: TempVar904 = CheckStringList(TempVar900, TempVar904, 4)
12) ' Weather For Zone 2
13) SETVAR: TempVar905 = CheckRandomRowStringList(TempVar900, 4)
14) SETVAR: TempVar905 = CheckStringList(TempVar900, TempVar905, 5)
15) ' Weather For Zone 2
16) SETVAR: TempVar906 = CheckRandomRowStringList(TempVar900, 5)
17) SETVAR: TempVar906 = CheckStringList(TempVar900, TempVar906, 6)
18) ' Weather For Zone 2
19) SETVAR: TempVar907 = CheckRandomRowStringList(TempVar900, 6)
20) SETVAR: TempVar907 = CheckStringList(TempVar900, TempVar907, 7)
21) ' Weather For Zone 2
22) SETVAR: TempVar908 = CheckRandomRowStringList(TempVar900, 7)
23) SETVAR: TempVar908 = CheckStringList(TempVar900, TempVar908, 8)
24) EXECUTE: ExecMessage(999, 999, '0', '-1')
25) ' Add the row onto the end of the WeatherList
26) EXECUTE: ExecAddStringListCells(0, 1, 0)
27) LOOPER: TempVar0 FROM 1 TO 8
28) EXECUTE: ExecSetStringList(2, 2, 2, 2)
29) END LOOPER
0) ' This function opens the appriopriate weather list
1) ' it finds a random row then that row gets dumped into stringlist 0 which is weatherforcecast
2) ' Add the row onto the end of the WeatherList
3) EXECUTE: ExecAddStringListCells(0, 1, 0)
4) SETVAR: TempVar902 = CheckStringListRows(0)
5) ' Loop and generate the weather forecast
6) LOOPER: TempVar1 FROM 0 TO 7
7) SETVAR: TempVar901 = CheckRandomRowStringList(TempVar900, TempVar1)
8) SETVAR: TempVar901 = CheckStringList(TempVar900, TempVar901, TempVar1)
9) ' Add the results to the last row in the weatherforecast string
10) EXECUTE: ExecSetStringList(0, TempVar902, TempVar1, TempVar901)
11) END LOOPER