Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Creating new Factions

  1. #1
    RKSL-Rock
    Guest

    Creating new Factions

    Not exactly a mission editing question but since we don't have other forums yet i'll ask here.

    We are obviously going to port addons over to ArmA2. Like a lot of none US related mods I don't want to but them under USMC faction.

    I've been going through all the available info and i haven't found the answer yet so does anyone know if or how we can create a new faction?

  2. #2
    Adding a new one to the config should work I guess:
    Code:
    class CfgFactionClasses
    {
     class USMC
     {
      displayName = "$STR_DN_USMC";
      priority = 1;
      side = 1;
     };
     class CDF
     {
      displayName = "$STR_DN_CDF";
      priority = 2;
      side = 1;
     };
     class RU
     {
      displayName = "$STR_DN_RU";
      priority = 3;
      side = 0;
     };
     class INS
     {
      displayName = "$STR_DN_INS";
      priority = 4;
      side = 0;
     };
     class GUE
     {
      displayName = "$STR_DN_GUE";
      priority = 5;
      side = 2;
     };
     class CIV
     {
      displayName = "$STR_DN_CHERNARUS";
      priority = 6;
      side = 3;
     };
     class CIV_RU
     {
      displayName = "$STR_DN_RU";
      priority = 7;
      side = 3;
     };
    };

  3. #3
    RKSL-Rock
    Guest
    Quote Originally Posted by T_D View Post
    Adding a new one to the config should work I guess:
    Fantastic, thanks a lot! Out of curiosity where was that? Which file?

  4. #4
    Ca/config

  5. #5
    RKSL-Rock
    Guest
    Quote Originally Posted by T_D View Post
    Ca/config
    Cheers. I must have been blind to miss that

  6. #6
    It would nice when an Dev can tell for what the priority parameter stands for !

    Ok, it's an counting list, but there could be a little problem when two addons use the same priority ?!

    In any case the community have to set standards before any addon/mod use them, otherwise a lot of incompatilities standing for our doors.

    Maybe a list in a own Forum thread (or in the Biki) would help who has defined which priority for which side and fraction.

    The Dev questions are:
    - are the 'priority list' able to work with gaps ?
    - are floating values work ?
    Don't think Beta!

  7. #7
    I assume priority handles the order of the factions in the editor factions list. If the priority is the same the first faction that occured with that priority is probably set before the other one. So I wouldnt waste much attention on that.

  8. #8
    This is a great addition. That Blufor/Opfor list could get awfully crowded.

  9. #9
    I forsee a problem with multiple mods trying to create the same faction? Shouldn't someone, say, create one unique addon that will add various factions to the list?

  10. #10
    Quote Originally Posted by Messiah View Post
    I forsee a problem with multiple mods trying to create the same faction? Shouldn't someone, say, create one unique addon that will add various factions to the list?
    Yes, it would be best to introduce some standards for this before everyone adds their own addons. The names should have proper capitalization and the same priority cause i dont feel like having 5 different US Army factions.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •