Page 1 of 1

MAP issue

Posted: 10 Mar 2010, 15:22
by DylanDog
Hello
Wanted to use the map Sk-AllEqual to create a challenge but warzone 2.3beta11a is not able to load the map. Is there a rule concerning the maps which can be used for challenges? only those on the mp.wz file?

Re: MAP issue

Posted: 10 Mar 2010, 17:32
by Per
No, no special rules.

Re: MAP issue

Posted: 10 Mar 2010, 22:29
by DylanDog
that is strange the same issue (happens with the map Sk-Arctic):

Code: Select all

[challenge]
Name = "DyDo-Arctic"
Difficulty = "Medium"
Map = "Sk-Arctic"
MaxPlayers = 4
Scavengers = false
Bases = 2
Power = 700
AllowPositionChange = false
[player_1]
team = 1
position = 0

[player_2]
team = 2
difficulty = 10

[player_3]
team = 3
difficulty = 10
position = 2

[player_4]
team = 2
difficulty = 10
what am I doing wrong here?

Re: MAP issue

Posted: 11 Mar 2010, 10:30
by Per
Where is your map stored? In a mod, or in your user map directory?

(And if it is in a mod, you are of course loading the mod priori to trying the challenge?)

Re: MAP issue

Posted: 11 Mar 2010, 15:52
by DylanDog
Per wrote:Where is your map stored? In a mod, or in your user map directory?
User MAP directory, I can play skirmish games on it with warzone and DyDo AI.

Re: MAP issue

Posted: 13 Mar 2010, 05:18
by Buginator
One of these days, someone will document what is going on... ;)

Anyway, here is a sample:
[challenge]
Name = "sample"
Difficulty = "Medium"
Map = "Sk-cluster-T3"
MaxPlayers = 2
Scavengers = false
Bases = 2
Power = 700

[player_1]
team = 1

[player_2]
team = 2
difficulty = 5
the map file is called 2c-cluster.wz (located in your config dir's maps directory--the ONLY place it should be!)
the map addon.lev file is called 2c-cluster.addon.lev
the *internal* map name that I am using is what is in red above (and in the *.addon.lev file below).
In my case, I wanted a T3 game ...
as for all the other parameters involved, one of these days they will turn up in some documentation. :)
level cluster
players 2
type 12
dataset MULTI_CAM_1
game "multiplay/maps/2c-cluster.gam"
data "wrf/multi/campaign.wrf"
data "wrf/multi/fog1.wrf"

level cluster-T2
players 2
type 15
dataset MULTI_T2_C1
game "multiplay/maps/2c-cluster.gam"
data "wrf/multi/campaign.wrf"
data "wrf/multi/fog1.wrf"

level cluster-T3
players 2
type 16
dataset MULTI_T3_C1
game "multiplay/maps/2c-cluster.gam"
data "wrf/multi/campaign.wrf"
data "wrf/multi/fog1.wrf"

level Sk-cluster
players 2
type 14
dataset MULTI_CAM_1
game "multiplay/maps/2c-cluster.gam"
data "wrf/multi/skirmish2.wrf"
data "wrf/multi/fog1.wrf"

level Sk-cluster-T2
players 2
type 18
dataset MULTI_T2_C1
game "multiplay/maps/2c-cluster.gam"
data "wrf/multi/t2-skirmish2.wrf"
data "wrf/multi/fog1.wrf"

level Sk-cluster-T3
players 2
type 19
dataset MULTI_T3_C1
game "multiplay/maps/2c-cluster.gam"
data "wrf/multi/t3-skirmish2.wrf"
data "wrf/multi/fog1.wrf"

Re: MAP issue

Posted: 18 Mar 2010, 17:04
by DylanDog
thanks!