OFPEC Forum

Editors Depot - Mission Editing and Scripting => Arma2 - Editing/Scripting Multiplayer => Topic started by: Wiper on 20 Aug 2009, 03:38:10

Title: Setting Param1/2 using the dedicated server template ?
Post by: Wiper on 20 Aug 2009, 03:38:10
Does anyone know if and how f.e. two different TitleParam settings (description.ext) can be changed for the same mission running twice in the mission cycle of a dedicated server ?

In detail,
here is what I'd like to achieve and how I tryed it out yet:

1st I have a mission with one working Param set (TitleParam1 is either 1 or 2. Works flawlessly on a game server).

2nd I'd like to have this option also available on a dedicated server.
Therfore I created a template containing two mission classes containing the same mission but different Param settings:

Code: [Select]
class Missions {
    class Cipher_TF
    {
        template = Cipher.Chernarus;
Param1=1;
    };
    class Cipher_SO
    {
        template = Cipher.Chernarus;
Param1=2;
    };
};

Problem now is that
1.) the mission shows up always with Param=1 set, regardless if cycled through or voted for the next.
2.) using admin rights I cant set Param1 too, or at least I cant see any impact when typing #Param1=2

What am I missing ?


Anyone maybe has an idea if those TitleParams can be even voted for directly (undocumented) ?

Thanks !