corp.go 409 B

12345678910111213141516171819
  1. package main
  2. type Corperation struct {
  3. ID ID
  4. Name string
  5. Tag string // Prefix to refer to this Corp
  6. Description []string
  7. MOTD []string
  8. AlliesCorp []ID // Allied Corps
  9. AlliesIndividual []ID // Allied Individual Players
  10. AllowGood bool
  11. AllowEvil bool
  12. Leader ID
  13. SeniorOfficers []ID
  14. Officers []ID
  15. Members []ID
  16. Password string
  17. RadioFrequency ID // Frequency to reserve for Corp (See RadioChannel)
  18. }