1. I have corrected the e-mail settings so that outgoing e-mails from these forums should be sent now. If you tried to Register or Reset your Password, please try again!
    Dismiss Notice

Exposing more guild data (and guild recruiting flags)

Discussion in 'Census: General Discussion' started by Quicktiger, Oct 28, 2012.

  1. Quicktiger

    Quicktiger Guest

    The constants don't include the guild recruiting.flags values.  0 means not recruiting, but the others are a mystery still.  I'll have them decoded before the end of this hour, probably...  but it would be nice if they were in the constants feed.

    Most information is exported, but the "descriptive tags" like "chatty" or "we are a crafter oriented guild" are not exposed in the data API.  Could these be added?

     
  2. feldon30

    feldon30 Guest

    It's a value from 0-63. That's my sum total knowledge at this point. ;)

    That would be helpful in /constants/

     
  3. Quicktiger

    Quicktiger Guest

    Here's what I've discovered the flags to mean, in good old Ruby syntax.

    The flags are a bitwise OR, as most flags want to be.  :)

      #

      # guild recruiting flags

      #

      def self.guild_recruiting_flags

        @guild_recruiting_flags ||= make_map([

          [ 1,  'Training offered to new players' ],

          [ 2,  'Recruiting Fighters' ],

          [ 4,  'Recruiting Priestes' ],

          [ 8,  'Recruiting Scouts' ],

          [ 16, 'Recruiting Mages' ],

          [ 32, 'Recruiting Tradeskillers' ],

        ])

      end




     
  4. feldon30

    feldon30 Guest

    Nice. Thanks for the research. :)
     
  5. Quicktiger

    Quicktiger Guest

    Last edited by a moderator: Dec 14, 2016
  6. feldon30

    feldon30 Guest

    Erm... :rolleyes:

    P.S. Guild Personality tags would flesh out the Recruiting data.
     
    Last edited by a moderator: Dec 14, 2016
  7. Quicktiger

    Quicktiger Guest

    Last edited by a moderator: Dec 14, 2016

Share This Page