Home   Help Search Login Register  

Author Topic: Setting Param1/2 using the dedicated server template ?  (Read 1207 times)

0 Members and 1 Guest are viewing this topic.

Offline Wiper

  • Members
  • *
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 !
« Last Edit: 20 Aug 2009, 03:57:08 by Wiper »