Difference between revisions of "Agents"

From BotF2-Wiki
Jump to: navigation, search
(Threads: *Agents http://star-trek-supremacy.proboards.com/thread/151/agents)
(In Agents.xml just add NaturalSkills="0,1" if PersonnelConstants.xaml allows 2 skills each agent at NaturalSkillsPerAgent="2". Too many skills will be erased, to less skills will be added randomly by the coding.)
 
(3 intermediate revisions by one user not shown)
Line 14: Line 14:
 
*Agents http://star-trek-supremacy.proboards.com/thread/151/agents (search entry thread/151)
 
*Agents http://star-trek-supremacy.proboards.com/thread/151/agents (search entry thread/151)
 
*Intelligence System http://star-trek-supremacy.proboards.com/thread/89/intelligence-system (search entry thread/89)
 
*Intelligence System http://star-trek-supremacy.proboards.com/thread/89/intelligence-system (search entry thread/89)
*Artwork for Agents needed http://bote2.square7.ch/forum/viewtopic.php?f=13&t=4794 (search entry t=4794)
+
*Artwork for Agents needed http://botf2.square7.ch/oldforum/viewtopic.php?f=13&t=4794 (search entry t=4794)
 +
*[[PBWorks#AI_Agent_Knowledge]]
  
 
= Skills =
 
= Skills =
 +
In Agents.xml just add NaturalSkills="0,1" if PersonnelConstants.xaml allows 2 skills each agent at NaturalSkillsPerAgent="2". Too many skills will be erased, to less skills will be added randomly by the coding.
  
 
SupremacyCore\Personnel\AgentSkill.cs:
 
SupremacyCore\Personnel\AgentSkill.cs:
Line 41: Line 43:
 
*{x:Type AgentSkill}
 
*{x:Type AgentSkill}
 
*{x:Type AgentStatus}
 
*{x:Type AgentStatus}
 +
 +
= Agent Events =
 +
 +
*An agent is recalled automatically to home base when a minor has member-ed with the Empire. https://bitbucket.org/mstrobel/supremacy/issue/190/agent-recall-on-membership
 +
 +
[[category:Agents]]

Latest revision as of 18:24, 30 July 2016

Intro

[quote="vjeko1701"]Should the Federation have only human agents then? I mean it's a bit funny having other races as agents before you even discover them and specially of they aren't on the map.[/quote]

[quote="mstrobel"]eh, it's like that in most 4X games that have 'heros' or 'leaders' (MoO2, Endless Space, etc.). It's actually not [i]that[/i] strange if you think about it. People will presumably migrate around the galaxy much like they move between countries and continents here on Earth. It's entirely possible for one member of a species to end up living and working among foreigners before contact has been made between the two respective governments. Odo worked for the Cardassians, Bajorans, and Federation before any of them came to know about the Dominion.[/quote]


see also http://botf2.square7.ch/wiki-files/Data/Agents.xlsx

see also Agents (Images)


Threads:

Skills

In Agents.xml just add NaturalSkills="0,1" if PersonnelConstants.xaml allows 2 skills each agent at NaturalSkillsPerAgent="2". Too many skills will be erased, to less skills will be added randomly by the coding.

SupremacyCore\Personnel\AgentSkill.cs:

public enum AgentSkill : byte
       Leadership = 0,
       Charisma = 1,
       Deception = 2,
       Stealth = 3,
       Combat = 4,
       Empathy = 5
                           Spy     Dip    Off
                           ===     ===    ===
       Leadership           -       S      P
       Charisma             -       P      S
       Deception            P       S      -
       Stealth              P       -      S
       Combat               S       -      P
       Empathy              S       P      -

Enums.xaml

  • {x:Type AgentCareer}
  • {x:Type AgentSkill}
  • {x:Type AgentStatus}

Agent Events